Skip to content
This repository has been archived by the owner on Sep 2, 2018. It is now read-only.

Latest commit

 

History

History
35 lines (23 loc) · 948 Bytes

CONTRIBUTING.md

File metadata and controls

35 lines (23 loc) · 948 Bytes

贡献

如果你想要给 Basics 做贡献,请遵照如下的规则:

  1. 点击 fork 按钮:

    fork

  2. 通过如下命令从你的 Github 帐号 clone 库:

    git clone git@github.com:your_github_username/Basics.git
    
  3. 通过如下命令创建分支 (branch) :

    git checkout -b "Basics-fix"
    # Basics-fix is just an example
    
  4. 对本地库进行修改。

  5. 提交自己的修改,然后推送 (push) 到远端。

    git add your_changed_files
    git commit -m "your comment"
    git push --set-upstream origin Basics-fix
    
  6. 点击 New pull request 按钮,将 your_github_username 的 Basics 库的 Basics-fix 分支的修改提交到 MintCN 的 Basics 库的 master 分支中。

十分感谢!