Understanding “git remote show” command output… Which is the meaning of: “Local ref configured for 'git push'”?
问题 I have two remotes and two local branches: local branch "master" is tracking remote branch "origin/master" local branch "mirror" is tracking remote branch "github/master" This is in my .git/config file: ... [remote "origin"] url = http://my.gitlab.com/nandoquintana/repo.git fetch = +refs/heads/*:refs/remotes/origin/* [remote "github"] url = https://github.com/nandoquintana/repo.git fetch = +refs/heads/*:refs/remotes/github/* [branch "master"] remote = origin merge = refs/heads/master [branch