Is there a config way to set this up without having to specify which branch?
7 Answers
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-to=reponame/remotebranch localbranch 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 branch
alias 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}
}
9 Comments
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.
6 Comments
git branch shouldn't really be parsed for branch information. That information is available with git rev-parse making the command: git pull origin $(git rev-parse --abbrev-ref HEAD)git pull origin <current-branch> which is the default anyway, isn't it? Are you implying that the other remote branches (e.g. origin/other-branch etc.) aren't updated, so that traffic is reduced?git pull you might end up with a message like There is no tracking information for the current branch. Please specify which branch you want to merge with.. Then you always end up typing git pull origin my-feature-branch. I'd really like to know how this situation arrives that there is no tracking information.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
4 Comments
pull.default=current. I see that my git clone by default also added remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* but that's pretty standard.pull.default config variable. Putting that in your git config won't do anything.The --set-upstream flag is deprecated and will be removed.
Hence, use --track or --set-upstream-to
Example: If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=<remote>/<branch> develop
2 Comments
--set-upstream-to= keeps being mentioning by git when it does not know about your tracking information. With no mention of deprecation.Here's a git alias that doesn't assume the remote is origin and handles if the branch isn't tracking a remote.
pullh = "!f() { set -e; set -o pipefail; arr=($(git rev-parse --abbrev-ref @{u} | sed 's/\\//\\n/')); git pull ${arr[0]} ${arr[1]}; }; f"
(Disclaimer: I'm very much a bash novice and the above could probably be simplified a lot.)
Comments
Yes, there is a config which can be changed in .gitconfig, for example:
[push]
default = current
which would push the current branch to update a branch with the same name on the receiving end.
Check by:
git config --global --get push.default
See: git-config.
1 Comment
git pull not git push so I downvoted your answer to prevent people thinking this is the solution