Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 962 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (22 loc) · 962 Bytes

贡献导引

请严格按照以下步骤操作,如有任何问题,请提出 issue

  • GitHub 上点击 fork 按钮将本仓库 fork 到自己的仓库,如 yourname/libdocker,然后 clone 到本地。

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

    $ git add .
    
    $ git commit -a "Fix issue #1: change helo to hello"
    
    $ git push origin/dev
  • GitHub 上提交 Pull request,注意请提交到 dev 分支。

  • 请定期更新自己仓库。

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