Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 950 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (22 loc) · 950 Bytes

贡献导引

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

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

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

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

  • 请定期更新自己仓库。

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