aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-07-22 13:00:45 -0700
committerJunio C Hamano <gitster@pobox.com>2012-07-22 13:00:45 -0700
commit12d1ea21c06b49843366bd5c992d2fa79433e33f (patch)
tree8d4ae909ba89b6d4bd1aca6d20ec3029eec23ebe /t
parent9ea5c632da283ff8c2dea8176cd34f1c8618d6c4 (diff)
parentff59f6da840bb58058fef06721a2646daae50509 (diff)
downloadgit-12d1ea21c06b49843366bd5c992d2fa79433e33f.tar.gz
git-12d1ea21c06b49843366bd5c992d2fa79433e33f.tar.xz
Merge branch 'js/fast-export-paths-with-spaces' into maint
"git fast-export" produced an input stream for fast-import without properly quoting pathnames when they contain SPs in them. * js/fast-export-paths-with-spaces: fast-export: quote paths with spaces
Diffstat (limited to 't')
-rwxr-xr-xt/t9350-fast-export.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9350-fast-export.sh b/t/t9350-fast-export.sh
index 77447b70f..3e821f958 100755
--- a/t/t9350-fast-export.sh
+++ b/t/t9350-fast-export.sh
@@ -430,7 +430,7 @@ test_expect_success 'fast-export quotes pathnames' '
git commit -m rename &&
git read-tree --empty &&
git commit -m deletion &&
- git fast-export HEAD >export.out &&
+ git fast-export -M HEAD >export.out &&
git rev-list HEAD >expect &&
git init result &&
cd result &&