From 9578faee0754873b9fa5ce8f4d5757254f7e4d41 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Sun, 20 May 2007 15:24:01 +0200 Subject: [PATCH] Oops, not only /set/ gitdir on clone, also set it /correctly/ :) --- git-p4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-p4 b/git-p4 index 14be55b..80d966f 100755 --- a/git-p4 +++ b/git-p4 @@ -1009,7 +1009,7 @@ class P4Clone(P4Sync): os.makedirs(dir) os.chdir(dir) system("git init") - gitdir = os.getcwd() + gitdir = os.getcwd() + "/.git" if not P4Sync.run(self, [depotPath]): return False if self.branch != "master": -- 2.11.4.GIT