请严格按照以下步骤操作,如有任何问题,请提出 issue
-
在 GitHub 上点击
fork
按钮将本仓库 fork 到自己的仓库,如yourname/flysystem-onedrive
,然后clone
到本地。$ git clone -b dev [email protected]:yourname/flysystem-onedrive.git $ cd flysystem-onedrive # 将项目与上游关联 $ git remote add upstream [email protected]:khs1994-php/flysystem-onedrive.git
-
增加内容或者修复错误后提交,并推送到自己的仓库。
$ git add . $ git commit -a "Fix issue #1: change helo to hello" $ git push origin/dev
-
在 GitHub 上提交
Pull request
,注意请提交到dev
分支。 -
请定期更新自己仓库。
$ git fetch upstream $ git rebase upstream/dev $ git push -f origin dev