我試過尋找這個答案,但找不到直接的答案。Git push upstream
我正在運行下面的代碼。
git fetch upstream # get the latest copy from master/upstream
git merge upstream/master # merge the downloaded copies and merge to your copy
git commit -am"test" # commit your latest changes
git push origin master # push to your fork
git push upstream # push to master copy from where you forked your project - is this safe?
是安全的推到上游(git push upstream
)?我的主要目標是將我的分支中的更改應用到主項目。或者有更好的方法?謝謝
謝謝奧拉夫..是的,我有特權來推動。所以答案是肯定的 - 直接從我的副本推向上游是安全的? – dmb
如果你有推送權限,那麼你不需要分叉項目。您可以使用讀/寫URL來克隆回購,提交和只是'git push'。 –
Git會將您的更改合併到上游,所以我沒有看到任何問題。 –