赞
踩
1.git clone ****
2.切换分支git checkout branch
3.拉取远端branch分支并合并到当前分支:git pull origin branch
1.切换到其他分支:git checkout master
2.删除本地分支内容:git branch -d 分支名
3.建立本地分支并将远程分支拉取至本地
git checkout -b 本地分支名 origin/远程分支名
1.将本地的branch分支合并到当前分支:git merge branch
2. 将某次提交的内容合并到当前分支:git cherry-pick
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。