Fix calling git-p4 rebase from within a subdirectory (git rebase wants to be in toplevel)
authorSimon Hausmann <shausman@trolltech.com>
Wed, 16 May 2007 10:12:39 +0000 (12:12 +0200)
committerSimon 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

index c48b257..ca6c623 100755 (executable)
@@ -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"):