pull/2/head
Hari Sekhon 7 years ago
commit 36e7a65eda

@ -29,7 +29,7 @@ allbranches(){
fi
# this only shows local branches, to show all remote ones do
# git ls-remote | awk '/\/heads\//{print $2}' | sed 's,refs/heads/,,'
eval git branch -a | clean_branch_name | $uniq
git branch -a | clean_branch_name | eval $uniq
}
clean_branch_name(){

@ -19,6 +19,10 @@ srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
. "$srcdir/git.sh"
# For Git < 2.0 may need to set:
#
# git config merge.defaultToUpstream true
foreachbranch 'git merge --no-edit'
git checkout master

@ -19,6 +19,10 @@ srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
. "$srcdir/git.sh"
# For Git < 2.0 may need to set:
#
# git config merge.defaultToUpstream true
foreachbranch 'git merge --no-edit && git merge master --no-edit'
git checkout master

@ -19,6 +19,10 @@ srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
. "$srcdir/git.sh"
# For Git < 2.0 may need to set:
#
# git config merge.defaultToUpstream true
foreachbranch 'git fetch && git merge --no-edit && git merge master --no-edit'
git checkout master

Loading…
Cancel
Save