git merge test 分支 到 master

来源:互联网 发布:linux 远程唤醒 编辑:程序博客网 时间:2024/06/05 05:52

拉取分支

git fetch origin

基于远程分支创建本地test分支并切换

git checkout -b test origin/test

切换到master分钟

git checkout master

merge test到master

git merge –no-ff test

提交代码

git push origin master

原创粉丝点击