From: Silvio Rhatto Date: Thu, 30 Nov 2017 16:42:10 +0000 (-0200) Subject: Fetch first at git-update-superproject git-checkout-branch X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=fa0002479b6487a0fc68c9caf391692c6b17100a;p=utils-git.git Fetch first at git-update-superproject git-checkout-branch --- diff --git a/git-checkout-branch b/git-checkout-branch index f9516d4..249ce93 100755 --- a/git-checkout-branch +++ b/git-checkout-branch @@ -26,6 +26,9 @@ BASENAME="`basename $0`" # Checkout the branch containing a commit function checkout_branch { + # Fetch from all repositories + git fetch --all + # Check if we are in a detached HEAD if git branch | grep -q '* (HEAD detached'; then # Determine the commit we're in diff --git a/git-update-superproject b/git-update-superproject index 0e49a01..75ad999 100755 --- a/git-update-superproject +++ b/git-update-superproject @@ -13,6 +13,7 @@ if [ ! -e ".git" ]; then fi # Run +git fetch --all git pull $* || exit 1 git submodule sync --recursive git submodule update --recursive --init