fork 源码到自己的仓库
git clone 自己的仓库
git clone xxxxxxxxxxxxxxx
git remote -v
如果没有关联,先关联本地仓库
git remote add origin xxxxxxxxxx
//例
git remote add origin https://gitee.com/YZRDEG/DLT645.git
git remote add upstream xxxxxxxxx
//例子
git remote add upstream https://gitee.com/wangjunjie997/DLT645.git
git fetch upstream master
为什么要这么做?因为当你在开发的时候,可能其他人也在开发,很有可能你fork的代码已经不是最新的了,这时你就需要不断更新你的代码,至少保证在push前要更新一次,这样才能确保不会发生代码冲突。
git add .
git commit -m "从站地址校验判断,需要加DL645_START_POS"
git push origin master
?Pull Request的意思是开发者提交自己的代码新建 Pull Request,请求原作者:“把我的代码拉回去吧”。
基本知识点:
Pull Request到底是个啥
git 工作流: