欢迎来到营地商店!免费查找、发布、评论露营地!欢迎分享您自己的一些内容并对其他人发表评论!
简而言之,您需要:
有关更多详细信息,请参阅以下步骤。
首先,在 github 上 fork 项目。
使用 git 在本地克隆和设置您的分叉项目。
# after cloning, navigate to the project
# to sync with origin
git remote add upstream < main_repo_url >
git remote add origin < your_forked_repo_url >
# to setup your locat dev branch
git branch your_local_branch
git checkout your_local_branch
# to add your changes
git add *
git commit -m " +your_local_branch: your commit here "
# push to your forked repo
git push origin your_local_branch
执行此操作后,系统将提示我检查您的代码以查看它是否会被合并。感谢您的辛勤工作和保重!
另外,通过这样做,如果对主存储库master
分支进行了任何更新,您可以使用git pull upstream master
轻松获取最新更新