Code

Merge 1.5.0.7 in
[git.git] / t / t0020-crlf.sh
index 58a4d86df3f8b82d4a5a7dcabdb93ee62b20a35c..723b29ad17f778f9f9a96682dee1793191b88667 100755 (executable)
@@ -180,11 +180,8 @@ test_expect_success 'apply patch (autocrlf=true)' '
        git repo-config core.autocrlf true &&
        git read-tree --reset -u HEAD &&
 
-       # Sore thumb
-       remove_cr one >tmp && mv -f tmp one &&
-
        git apply patch.file &&
-       test "$patched" = "`git hash-object --stdin <one`" || {
+       test "$patched" = "`remove_cr one | git hash-object --stdin`" || {
                echo "Eh?  apply without index"
                false
        }
@@ -203,4 +200,18 @@ test_expect_success 'apply patch --cached (autocrlf=true)' '
        }
 '
 
+test_expect_success 'apply patch --index (autocrlf=true)' '
+
+       rm -f tmp one dir/two &&
+       git repo-config core.autocrlf true &&
+       git read-tree --reset -u HEAD &&
+
+       git apply --index patch.file &&
+       test "$patched" = `git rev-parse :one` &&
+       test "$patched" = "`remove_cr one | git hash-object --stdin`" || {
+               echo "Eh?  apply with --index"
+               false
+       }
+'
+
 test_done