Git向开源代码提交流程

Posted maoyin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git向开源代码提交流程相关的知识,希望对你有一定的参考价值。

Git向开源代码提交流程:

1. 先fork到自己的repository.

2. 将自己的repository clone到本地,

3. 创建feature branch

4. 从主repository更新代码:

  1) Add主repository:  git remote add upstream https://location/of/generic.git

      2) 更新代码:git pull upstream master

      3) 更新 push url 防止checkin 到主repository:  git config remote.upstream.pushurl "NEVER GONNA GIVE YOU UP"

5. 修改代码

6. push 到自已的repository

7. Merge到主repository

技术分享图片

以上是关于Git向开源代码提交流程的主要内容,如果未能解决你的问题,请参考以下文章

如何向Github开源项目提交代码

VSCode自定义代码片段——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程

Visual Studio (VS2017)提交代码到Git服务器流程(GitCode)

Visual Studio (VS2017)提交代码到Git服务器流程(GitCode)