X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=all;h=6011b54e52ee9f13782f10816c98b2c36088ff08;hp=2b1cd557c92a1072f9d13d47f2b5b52ec002d531;hb=db1393bf338eafd04c38ed4f94769da4821e8ecf;hpb=1bc0cc65a12e4acdc5e104d0a3e6094848fb233d;ds=sidebyside diff --git a/all b/all index 2b1cd557..6011b54e 100755 --- a/all +++ b/all @@ -40,6 +40,7 @@ repos_urls=" darkplaces fteqcc@git://github.com/Blub/qclib.git div0-gittools@git://git.icculus.org/divverent/div0-gittools.git + netradiant " repos=`for X in $repos_urls; do echo "${X%%@*}"; done` @@ -50,6 +51,12 @@ fi cmd=$1 shift +case "$0" in + */*) + cd "${0%/*}" + ;; +esac + d0=`pwd` case "$cmd" in update|pull) @@ -137,7 +144,7 @@ case "$cmd" in cd "$d0/$d" a= while [ x"$a" != x"y" -a x"$a" != x"n" ]; do - echo "Branch in $d?" + echo "Branch in \"$d\"?" read -r a done if [ x"$a" = x"y" ]; then @@ -162,10 +169,21 @@ case "$cmd" in cd "$d0/$d" r=`git symbolic-ref HEAD` r=${r#refs/heads/} - a= + if git diff HEAD | grep .; then + # we have uncommitted changes + a= + while [ x"$a" != x"y" -a x"$a" != x"n" ]; do + echo "Uncommitted changes in \"$r\" in \"$d\". Commit?" + read -r a + done + if [ x"$a" = x"y" ]; then + verbose git commit -a + fi + fi if git log "origin/$r".."$r" | grep .; then + a= while [ x"$a" != x"y" -a x"$a" != x"n" ]; do - echo "Push $r in $d?" + echo "Push \"$r\" in \"$d\"?" read -r a done if [ x"$a" = x"y" ]; then