查看git push 默认的远程分支名用什么命令?
習慣沉默
習慣沉默 2017-05-02 09:28:47
0
5
580

例如:
git push -u origin master
这条命令将origin/master 设置为默认被推送的分支。以后直接git push就可以了。
但是过段时间忘了。我想查看。命令是什么呢?

在比如:
git push -u origin test
git push
//这个时候我推送的远程分支应该是 origin/test

那么我的问题是,过了一段时间我忘记git push 会push到origin/master 还是会push到origin/test
有什么命令能够查看嘛?

git remote -v 只是能够查看 origin对应的远程的url。
难道我的理解错了?

習慣沉默
習慣沉默

reply all(5)
我想大声告诉你

git branch -vv

phpcn_u1582

git remote -v

習慣沉默

These settings are saved in the local config, use the following command to view:
git config --local -l
Related entries:
push.default
branch.<name>.merge
branch.<name>.remote
Introduction to the entry: git help config

左手右手慢动作

-u settings default

刘奇

git remote -v

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template