自学内容网 自学内容网

Git本地分支更新推送到远程主分支上

  1. 本地分支(debug)开发之前:
  • git pull origin dev(主分支)
  • git merge
    • 这步merge可能会现异常:error:Merging is not possible because you have ynmerged files,出现冲突文件,处理冲突代码
    • 确定处理完后,git add .
    • git commit -m ‘’ ,提交最新代码
    • git push origin debug,推送最新代码到远程分支debug
  1. 你确定dev(主分支) 代码无更新情况下
  • git push origin debug
  • git checkout dev
  • git merge origin debug(分支)
  • 然后push 到dev上

原文地址:https://blog.csdn.net/Lhy_JL/article/details/143368926

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!