summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2010-02-01 12:43:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-02-06 18:52:14 (GMT)
commitd2d66f15b620c8e96219cfe339f32e77bfaf69b4 (patch)
tree5dc206dd1f49eff4abb5431c62a960c035e8de49 /Documentation
parentab35469de0d2d2ba4be58fd0231687ddc9cc3cdc (diff)
downloadgit-d2d66f15b620c8e96219cfe339f32e77bfaf69b4.zip
git-d2d66f15b620c8e96219cfe339f32e77bfaf69b4.tar.gz
git-d2d66f15b620c8e96219cfe339f32e77bfaf69b4.tar.bz2
docs: fix filter-branch example for quoted paths
If there is a quoted path, update-index will correctly unquote it. However, we must take care to put our new prefix inside the double-quote. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-filter-branch.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index cfaba2a..020028c 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -358,7 +358,7 @@ To move the whole tree into a subdirectory, or remove it from there:
---------------------------------------------------------------
git filter-branch --index-filter \
- 'git ls-files -s | sed "s-\t-&newsubdir/-" |
+ 'git ls-files -s | sed "s-\t\"*-&newsubdir/-" |
GIT_INDEX_FILE=$GIT_INDEX_FILE.new \
git update-index --index-info &&
mv $GIT_INDEX_FILE.new $GIT_INDEX_FILE' HEAD