摘要:
最近使用git pull的时候多次碰见下面的情况: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) 阅读全文
摘要:
创建本地分支git branch 分支名 例如:git branch dev,这条命令是基于当前分支创建的本地分支,假设当前分支是master(远程分支),则是基于master分支创建的本地分支dev。 删除本地分支(必须保证不在删除的分支上,才能进行删除) git branch -d dev 切换 阅读全文