Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

37 lines (22 loc) · 1.17 KB

贡献导引

请严格按照以下步骤操作,如有任何问题,请提出 [issue](https://github.com/{{ EXAMPLE_GIT_USERNAME_EXAMPLE }}/{{ EXAMPLE_GIT_REPO_EXAMPLE }}/issues/new)

  • 在 [GitHub](https://github.com/{{ EXAMPLE_GIT_USERNAME_EXAMPLE }}/{{ EXAMPLE_GIT_REPO_EXAMPLE }}/fork) 上点击 fork 按钮将本仓库 fork 到自己的仓库,如 yourname/{{ EXAMPLE_GIT_REPO_EXAMPLE }},然后 clone 到本地。

    $ git clone -b dev [email protected]:yourname/{{ EXAMPLE_GIT_REPO_EXAMPLE }}.git
    
    $ cd {{ EXAMPLE_GIT_REPO_EXAMPLE }}
    
    # 将项目与上游关联
    
    $ git remote add upstream [email protected]:{{ EXAMPLE_GIT_USERNAME_EXAMPLE }}/{{ EXAMPLE_GIT_REPO_EXAMPLE }}.git
  • 增加内容或者修复错误后提交,并推送到自己的仓库。

    $ git add .
    
    $ git commit -a "Fix issue #1: change helo to hello"
    
    $ git push origin/dev
  • 在 [GitHub](https://github.com/{{ EXAMPLE_GIT_USERNAME_EXAMPLE }}/{{ EXAMPLE_GIT_REPO_EXAMPLE }}) 上提交 Pull request,注意请提交到 dev 分支。

  • 请定期更新自己仓库。

    $ git fetch upstream
    
    $ git rebase upstream/dev
    
    $ git push -f origin dev