美文网首页
2019-12-17

2019-12-17

作者: lynPositive | 来源:发表于2019-12-17 11:04 被阅读0次

git切换分支,提交代码(合并分支)

(1)git branch  -r  //查看所有的分支(注:git branch只能查看本地分支)

 (2)git checkout -b dev master // 切换,master分支为dev

  // 提交代码

(3)git status

   (4) git add .

   (5)  git commit -m '00'

   (6) git pull

   (7) git push --set-upstream origin dev

相关文章

网友评论

      本文标题:2019-12-17

      本文链接:https://www.haomeiwen.com/subject/bohsnctx.html