[PATCH] A test case that demonstrates a problem with merges with two roots.
[git.git] / git-clone-script
blob654f66dcc236006709e59214cc55d64c69c33993
1 #!/bin/sh
2 repo="$1"
3 dir="$2"
4 mkdir $dir || exit 1
5 cd $dir
6 git-init-db
7 git fetch "$repo" && ( git-rev-parse FETCH_HEAD > .git/HEAD )