diff options
author | 2007-07-07 12:29:09 -0700 | |
---|---|---|
committer | 2007-07-07 12:29:09 -0700 | |
commit | 0707a9d6f200bbafc02d13dd7f2c12bb795999f6 (patch) | |
tree | 579501f90e8b0a2d46480df695a01f5d5e90aacf /t | |
parent | diff-lib.c: don't strdup twice (diff) | |
parent | Fix "apply --reverse" with regard to whitespace (diff) | |
download | tgif-0707a9d6f200bbafc02d13dd7f2c12bb795999f6.tar.xz |
Merge branch 'maint'
* maint:
Fix "apply --reverse" with regard to whitespace
Diffstat (limited to 't')
-rwxr-xr-x | t/t4116-apply-reverse.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t4116-apply-reverse.sh b/t/t4116-apply-reverse.sh index a7f5905f1e..9ae2b3a8ef 100755 --- a/t/t4116-apply-reverse.sh +++ b/t/t4116-apply-reverse.sh @@ -82,4 +82,10 @@ test_expect_success 'apply in reverse without postimage' ' ) ' +test_expect_success 'reversing a whitespace introduction' ' + sed "s/a/a /" < file1 > file1.new && + mv file1.new file1 && + git diff | git apply --reverse --whitespace=error +' + test_done |