All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Improved example "To move the whole tree into a subdirectory...".
@ 2015-06-01 13:04 Brett Randall
  0 siblings, 0 replies; only message in thread
From: Brett Randall @ 2015-06-01 13:04 UTC (permalink / raw)
  To: git, Junio C Hamano

Previously this example would fail if the history contained any empty
commit, because the index would not change, and the mv would fail with:

mv: cannot stat <redacted>/index.new': No such file or directory

The updated example checks whether the index file has been created
before attempting the mv.  The empty commit is retained.

See
http://stackoverflow.com/questions/7798142/error-combining-git-repositories-into-subdirs
for an example and explanation.

Signed-off-by: Brett Randall <javabrett@gmail.com>
---
 Documentation/git-filter-branch.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/git-filter-branch.txt
b/Documentation/git-filter-branch.txt
index 73fd9e8..0b9e690 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -385,7 +385,7 @@ git filter-branch --index-filter \
        '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
+        if [ -f "$GIT_INDEX_FILE.new" ]; then mv
"$GIT_INDEX_FILE.new" "$GIT_INDEX_FILE"; fi' HEAD
 ---------------------------------------------------------------


-- 
2.3.5

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-06-01 13:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-01 13:04 [PATCH] Improved example "To move the whole tree into a subdirectory..." Brett Randall

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.