How can you git pull only the current branch? How can you git pull only the current branch? git git

How can you git pull only the current branch?


Git already only pulls the current branch. If you have branch set up as a tracking branch, you do not need to specify the remote branch. git branch --set-upstream localbranch reponame/remotebranch will set up the tracking relationship. You then issue git pull [--rebase] and only that branch will be updated.

Of course, all remote tracking branches and all refs for the remote will be updated, but only your local tracking branch will be modified.

Useful Bash alias to cut down on typing of this common operation:

# Add an alias to pulling latest git changes into your same branchalias pullhead='git pull origin $(git rev-parse --abbrev-ref HEAD)'

Powershell function that does the same:

Function pullhead {    $cur_head="$(git rev-parse --abbrev-ref HEAD)"    & git pull origin ${cur_head}}


I just did it this way:

git pull origin "$(git branch | grep -E '^\* ' | sed 's/^\* //g')"

or

git pull origin $(git rev-parse --abbrev-ref HEAD)

This extracts the current branch from git branch, and pulls that branch from remote origin.

Note, that like Seth Robertson said, when no arguments are given only the current branch is modified but all remote branches are fetched. I don't want to fetch all remote branches, so I did it this way.


UPDATE

The old answer i've add does not work any more :/. But after receive some upvotes about the PUSH version I've placed, to me means this answer is actually helping someone that ending coming here from search engines, so I'll keep this answer.

Try this for the new version of git:

$ git config --global push.default current