Git协作工作流
第二步 - Clone 仓库
- 定义一些基础的环境变量
请根据你的实际情况来设置值。
Bash
Clone 仓库到你本地
Bash
mkdir -p ${WORKING_PATH}
cd ${WORKING_PATH}
# You can also use the url: git@github.com:${USER}/${PROJECT}.git
# if your ssh configuration is proper
git clone https://github.com/${USER}/${PROJECT}.git
git remote add upstream https://github.com/${ORG}/${PROJECT}.git
# Never push to upstream locally
git remote set-url --push upstream no_push
执行git remote -v
这个命令,你将看到如下输出:
Bash
你经常需要更新你的本地代码,以便与上游保持同步。
Bash
git checkout main
git rebase upstream/main
第四步 - 编码
Bash
然后开始编码吧。
Bash
git add <file>
git push -f origin feat-xxx
然后你就可以在GitHub上创建一个。