赞
踩
例如develop分支合并提交到master
1.切换到master分支
git checkout master
2.合并多条记录到当前本地分支
git merge --squash develop
3.将合并内容提交到本地
git commit -m "文字说明"
4.将本地提交推送到远程
git push origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。