git多人合作

首先创建一个仓库,然后比如现在仓库当中已经有代码了,那么想要参与项目,假设我们现在有一个远程仓库,这个是多人合作笔记,我们共同合作的代码main(master)

  1. git clone 克隆下来

  2. git checkout -b my-feature //复制一份到Local

    或者 git switch -c my-feature

  3. git diff //查看改了什么

  4. git add . //添加到暂存区

  5. git commit -m “相关备注”

  6. git push origin my-feature //在Remote中添加分支

  7. git checkout main //切换分支

  8. git pull origin master //远端同步到本地

  9. git checkout my-feature //切换到my-feature

  10. git rebase main //合并,处理冲突,相当于在my-feather修改了

  11. git push -f origin my-feather //然后再remote上面多了一个my-feather最新改动

  12. squash and merge //合并,删除远端的my-feather

  13. git branch -D my-feather

  14. git pull origin master

你可能感兴趣的:(git,github)