歡迎來到營地商店!免費尋找、發布、評論露營地!歡迎分享您自己的一些內容並對其他人發表評論!
簡而言之,您需要:
有關更多詳細信息,請參閱以下步驟。
首先,在 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
輕鬆獲取最新更新