From: Rudolf Polzer Date: Sat, 30 Aug 2014 09:29:30 +0000 (+0200) Subject: Allow the repo's default branch to differ from master. X-Git-Tag: xonotic-v0.8.0~19 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=e4fdb51af95849173b80317f16351a5658122ac2 Allow the repo's default branch to differ from master. --- diff --git a/misc/tools/all/git.subr b/misc/tools/all/git.subr index 5c8d53dc..26b768c3 100644 --- a/misc/tools/all/git.subr +++ b/misc/tools/all/git.subr @@ -648,13 +648,10 @@ case "$cmd" in fi o=`git config xonotic.all.mirrorselection 2>/dev/null || true` git config xonotic.all.mirrorselection try_same - verbose git clone "$url" "$d0/$d" + verbose git clone --branch "$branch" "$url" "$d0/$d" git config xonotic.all.mirrorselection "$o" enter "$d0/$d" verbose fix_git_config "$url" "$pushurl" - if [ "$branch" != "master" ]; then - verbose git checkout --track -b "$branch" origin/"$branch" - fi cd "$d0" fi }