Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I often have at least 3 remote branches: master, staging and production. I have 3 local branches that track those remotes.

Updating all my local branches is tedious:

git fetch --all
git rebase origin/master
git co staging
git rebase origin/staging
git co production
git rebase origin/production

I'd love to be able to just do a "git pull -all", but I haven't been able to get it to work. It seems to do a "fetch --all", then updates (fast forward or merges) the current working branch, but not the other local branches.

I'm still stuck manually switching to each local branch and updating.

share|improve this question
13  
+1, this would be a great feature. – JaredPar Nov 30 '10 at 20:23

5 Answers

up vote 44 down vote accepted

git-up automates this. From the README:

So git pull merges by default, when it should really rebase. You can ask it to rebase instead, but it still won't touch anything other than the currently checked-out branch. If you're tracking a bunch of remote branches, you'll get non-fast-forward complaints next time you push.

Solve it once and for all:

gem install git-up

share|improve this answer
Consider the --ff-only option to git pull. Or perhaps --rebase – Aaron McDaid Nov 8 '12 at 19:33
I know about those options; my answer even links to explanations of --rebase. This question is about the deficiencies of that approach. – John Nov 8 '12 at 22:12
1  
That's true. I don't really know what I was thinking! – Aaron McDaid Nov 9 '12 at 2:08
Thanks dude, works very well. – Tadas Sasnauskas Jan 17 at 15:02
Great find! This is now the accepted answer (sorry @Jefromi). – mpoisot Apr 18 at 15:18
show 1 more comment

The behavior you describe for pull --all is exactly as expected, though not necessarily useful. The option is passed along to git fetch, which then fetches all refs from all remotes, instead of just the needed one; pull then merges (or in your case, rebases) the appropriate single branch.

If you want to check out other branches, you're going to have to check them out. And yes, merging (and rebasing) absolutely require a work tree, so they cannot be done without checking out the other branches. You could wrap up your described steps into a script/alias if you like, though I'd suggest joining the commands with && so that should one of them fail, it won't try to plow on.

share|improve this answer

It's not so hard to automate:

#!/bin/sh
# Usage: fetchall.sh branch ...

set -x
git fetch --all
for branch in "$@"; do
    git checkout "$branch"      || exit 1
    git rebase "origin/$branch" || exit 1
done
share|improve this answer
It's probably best not to use aliases in scripts. This also doesn't actually fetch anything, just rebases onto the already-fetched content. You should change git rebase origin/$branch to git pull, so that it will fetch from the appropriate tracking branch (presumably on origin) and either merge or rebase as determined by the config. – Jefromi Nov 30 '10 at 21:06
@Jefromi: I had forgotten the fetch. Have edited; extra features/fixes whatever are up to the OP. – larsmans Nov 30 '10 at 22:18
I still think you may want to use pull (or check branch.<branch>.rebase), so that you don't accidentally rebase a branch which is set up to pull normally (merge). – Jefromi Nov 30 '10 at 22:54

This still isn't automatic, as I wish there was an option for - and there should be some checking to make sure that this can only happen for fast-forward updates (which is why manually doing a pull is far safer!!), but caveats aside you can:

git fetch origin
git update-ref refs/heads/other-branch origin/other-branch

to update the position of your local branch without having to check it out.

Note: you will be losing your current branch position and moving it to where the origin's branch is, which means that if you need to merge you will lose data!

share|improve this answer

To complete the answer by Matt Connolly, this is a safer way to update local branch references that can be fast-forwarded, without checking out the branch. It does not update branches that cannot be fast-forwarded (i.e. that have diverged), and it does not update the branch that is currently checked out (because then the working copy should be updated as well).

git fetch

head="$(git symbolic-ref HEAD)"
git for-each-ref --format="%(refname) %(upstream)" refs/heads | while read ref up; do
    if [ -n "$up" -a "$ref" != "$head" ]; then
        mine="$(git rev-parse "$ref")"
        theirs="$(git rev-parse "$up")"
        base="$(git merge-base "$ref" "$up")"
        if [ "$mine" != "$theirs" -a "$mine" == "$base" ]; then
            git update-ref "$ref" "$theirs"
        fi
    fi
done
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.