Merge tag 'gitgui-0.18.0' of git://repo.or.cz/git-gui
[gitweb.git] / contrib / remote-helpers / test-hg-hg-git.sh
index 37e59d8fe8a755fdd858f369ad8661a3b498f356..2219284382f0e987423ae00e5bd89e9b7a4b0046 100755 (executable)
@@ -27,7 +27,8 @@ fi
 
 # clone to a git repo with git
 git_clone_git () {
-       git clone -q "hg::$1" $2
+       git clone -q "hg::$1" $2 &&
+       (cd $2 && git checkout master && git branch -D default)
 }
 
 # clone to an hg repo with git
@@ -63,6 +64,7 @@ hg_push_git () {
        cd $2
        git checkout -q -b tmp &&
        git fetch -q "hg::../$1" 'refs/tags/*:refs/tags/*' 'refs/heads/*:refs/heads/*' &&
+       git branch -D default &&
        git checkout -q @{-1} &&
        git branch -q -D tmp 2> /dev/null || true
        )