]> git.ipfire.org Git - thirdparty/git.git/blobdiff - contrib/workdir/git-new-workdir
new-workdir: handle rev-parse --git-dir not always giving full path
[thirdparty/git.git] / contrib / workdir / git-new-workdir
index f2a3615bbc44ed4edbee4014683621a91c1a7ab9..709b2a3ac0e7603eadd9f62a795967c415d554df 100755 (executable)
@@ -24,6 +24,11 @@ git_dir=$(cd "$orig_git" 2>/dev/null &&
   git rev-parse --git-dir 2>/dev/null) ||
   die "\"$orig_git\" is not a git repository!"
 
+if test "$git_dir" == ".git"
+then
+       git_dir="$orig_git/.git"
+fi
+
 # don't link to a workdir
 if test -L "$git_dir/config"
 then