标签:lob pull 本地 default asc glob 创建 分支 冒号
在本地新建一个分支: git branch newBranch 切换到你的新分支: git checkout newBranch 创建并切换到新分支: git checkout -b newBranch 将新分支发布在github上: git push origin newBranch 在本地删除一个分支: git branch -d newBranch 在github远程端删除一个分支: git push origin :newBranch (分支名前的冒号代表删除) 直接使用git pull和git push的设置 git branch --set-upstream-to=origin/master master git branch --set-upstream-to=origin/ThirdParty ThirdParty git config --global push.default matching
标签:lob pull 本地 default asc glob 创建 分支 冒号
原文地址:http://www.cnblogs.com/veryvalley/p/7837521.html