有些分支在远端其实早就被删除了,但是在你本地依然可以看见这些被删除的分支。
清理远端不需要的分支:
1 git remote prune origin
1
git remote prune origin
git clone https://bitbucket.org/chromiumembedded/cef.git -b 6099 其中-b表示clone远端的6099分支,但同时也会拉取其它远端分支的信息。 如果不想拉取其它远端分支的信息,只想要6099这一个分支的信息,需要加上--single-branch选项。
git merge时如何只合并不提交 可以使用 –no-commit 选项
1 2 3 4 5 6 7 8 9 不想要的本地分支,使用大写的-D参数删除 git branch -D xxx 删除远程origin主机的xxx分支 git push origin --delete xxx
C++系列2:宏定义时#(井号)和##(双井号)的作用
Qt官方示例解析系列7:Fortune Server and Client