开发过程中经常用到从master分支copy一个开发分支,下面我们就用命令行完成这个操作
1. 切换到被copy的分支(master),并且从远端拉取最新版本123$git checkout master$git pull
其中git pull 标准或完整的命令是git pull remote_repository_name branch_name,他们执行效果都一样所以省略写。
2. 从当前分支拉copy开发分支123$git checkout -b devSwitched to a new branch 'dev'
3. 把新建的分支push到远端1$git push origin dev
4. 拉取远端分支1$git pull
There is no tracking information for the current branch.Please specify which branch you want to merge with.See git-pull(1) for details.
git pull
If you wish to se ...