-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* js/apply-root: git-apply --directory: make --root more similar to GNU diff apply --root: thinkofix. Teach "git apply" to prepend a prefix with "--root=<root>"
- Loading branch information
Showing
3 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/bin/sh | ||
|
||
test_description='apply same filename' | ||
|
||
. ./test-lib.sh | ||
|
||
test_expect_success 'setup' ' | ||
mkdir -p some/sub/dir && | ||
echo Hello > some/sub/dir/file && | ||
git add some/sub/dir/file && | ||
git commit -m initial && | ||
git tag initial | ||
' | ||
|
||
cat > patch << EOF | ||
diff a/bla/blub/dir/file b/bla/blub/dir/file | ||
--- a/bla/blub/dir/file | ||
+++ b/bla/blub/dir/file | ||
@@ -1,1 +1,1 @@ | ||
-Hello | ||
+Bello | ||
EOF | ||
|
||
test_expect_success 'apply --directory -p (1)' ' | ||
git apply --directory=some/sub -p3 --index patch && | ||
test Bello = $(git show :some/sub/dir/file) && | ||
test Bello = $(cat some/sub/dir/file) | ||
' | ||
|
||
test_expect_success 'apply --directory -p (2) ' ' | ||
git reset --hard initial && | ||
git apply --directory=some/sub/ -p3 --index patch && | ||
test Bello = $(git show :some/sub/dir/file) && | ||
test Bello = $(cat some/sub/dir/file) | ||
' | ||
|
||
test_done |