From b7fc39f19a54a72b5dfe28c6a4bb6c14a8317110 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 3 Apr 2010 02:11:38 +0200 Subject: [PATCH] update.sh: Fix branch selection. --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index d6a1b4d..d65bd69 100755 --- a/update.sh +++ b/update.sh @@ -12,7 +12,7 @@ for path in `find . -name .git -type d`; do # to make sure all configuration files get updated. if `git branch | grep *\ master > /dev/null`; then echo $path: - for branch in `git branch -a | grep remotes`; do + for branch in `git branch -r`; do echo " merging: $branch" git merge $branch done -- 2.44.1