X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=all;h=593736e7e2a392d81acbe5b5e738a58c920a04a7;hp=e19793567a34d224808a78fc4e1832b49a508248;hb=740a38b25a4637627123304d6355a355376a1979;hpb=27fd916063a5cd6f7de90d4b976fc4108ae51a6c diff --git a/all b/all index e1979356..593736e7 100755 --- a/all +++ b/all @@ -233,13 +233,17 @@ case "$cmd" in dv=`visible_repo_name "$d"` enter "$d0/$d" verbose a= - while [ x"$a" != x"y" -a x"$a" != x"n" ]; do - echo "Branch in $dv?" - read -r a - done - if [ x"$a" = x"y" ]; then - verbose git push "$remote" "$srcbranch":"$branch" - verbose git checkout --track -b "$branch" "$remote/$branch" + if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then + echo "Already having this branch in $dv." + else + while [ x"$a" != x"y" -a x"$a" != x"n" ]; do + echo "Branch in $dv?" + read -r a + done + if [ x"$a" = x"y" ]; then + verbose git push "$remote" "$srcbranch":"$branch" + verbose git checkout --track -b "$branch" "$remote/$branch" + fi fi cd "$d0" done