github之pull request用法
git checkout -b test-pr
git add . && git commit -m "test-pr"
git push origin test-pr
大体就是这三步,就可以将本地仓库的代码push到远程仓库,然后下一步在github网站上进行 pull request 操作
写好注释内容,然后pull request
git checkout -b test-pr
git add . && git commit -m "test-pr"
git push origin test-pr
大体就是这三步,就可以将本地仓库的代码push到远程仓库,然后下一步在github网站上进行 pull request 操作
写好注释内容,然后pull request