projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3c4624
)
Fix calling git-p4 rebase from within a subdirectory (git rebase wants to be in toplevel)
author
Simon Hausmann
<shausman@trolltech.com>
Wed, 16 May 2007 10:12:39 +0000
(12:12 +0200)
committer
Simon Hausmann
<shausman@trolltech.com>
Wed, 16 May 2007 10:12:39 +0000
(12:12 +0200)
Signed-off-by: Simon Hausmann <shausman@trolltech.com>
contrib/fast-import/git-p4
patch
|
blob
|
history
diff --git
a/contrib/fast-import/git-p4
b/contrib/fast-import/git-p4
index c48b257577f22bf7872a11fadfe659fc66802970..ca6c62380990268a77a54bc7655c055445469b94 100755
(executable)
--- a/
contrib/fast-import/git-p4
+++ b/
contrib/fast-import/git-p4
@@
-1197,6
+1197,8
@@
if cmd.needsGit:
gitdir = ".git"
if not isValidGitDir(gitdir):
gitdir = mypopen("git rev-parse --git-dir").read()[:-1]
+ if os.path.exists(gitdir):
+ os.chdir(mypopen("git rev-parse --show-cdup").read()[:-1]);
if not isValidGitDir(gitdir):
if isValidGitDir(gitdir + "/.git"):