[branch "master"]
remote = origin
merge = refs/heads/master
[branch "production"]
remote = origin
merge = refs/heads/production
# Means that 'git pull' will pull from origin/master to master and origin/production to production.
# You can use any remote or branch name here
[branch "dev"]
remote = staging
merge = refs/heads/staging
# to set this up in the console...
> git config branch.master.remote origin
> git config branch.master.merge refs/heads/master