diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2023-03-08 07:17:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2023-06-17 12:54:00 +0000 |
commit | c221cb60c63d01512ad696f1b828fdadce4cb248 (patch) | |
tree | 0d95111678d967cef3a67dd98274e159fbc56106 /git/bin | |
parent | Correcting wrong date for previous release in changelog. (diff) | |
download | service-tools-c221cb60c63d01512ad696f1b828fdadce4cb248.tar.xz service-tools-c221cb60c63d01512ad696f1b828fdadce4cb248.zip |
Also calling pull the current branch in git-pull-branches.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'git/bin')
-rwxr-xr-x | git/bin/git-pull-branches | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/git/bin/git-pull-branches b/git/bin/git-pull-branches index 9effa17..afa2e63 100755 --- a/git/bin/git-pull-branches +++ b/git/bin/git-pull-branches @@ -24,6 +24,10 @@ set -e CURRENT_BRANCH="$(git branch --show-current)" REMOTE_BRANCHES="$(git branch -r | awk '{ print $1 }')" +# pull current branch +git pull + +# pull remote branches for REMOTE_BRANCH in ${REMOTE_BRANCHES} do BRANCH="$(echo "${REMOTE_BRANCH}" | cut -d/ -f 2-)" @@ -43,6 +47,7 @@ do fi done +# checkout current branch if [ "$(git branch --show-current)" != "${CURRENT_BRANCH}" ] then git checkout "${CURRENT_BRANCH}" |