> git checkout -b new_branch remote_name:branch_name
> git remote show remote_name
输出:
remote branches:
branch_name tracked
master tracked
Local branches configured for 'git pull':
new_branch merges with remote branch_name
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
new_branch 怎么没有出现在 Local ref configured for 'git push': 的列表里?
如果想 new_branch 出现在这个地方应该怎么做?
> git remote show remote_name
输出:
remote branches:
branch_name tracked
master tracked
Local branches configured for 'git pull':
new_branch merges with remote branch_name
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
new_branch 怎么没有出现在 Local ref configured for 'git push': 的列表里?
如果想 new_branch 出现在这个地方应该怎么做?


