これに対する答えを探してみましたが、まっすぐな答えが見つかりません。
以下のコードを実行しています。
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
ですか? 私の主な目標は、フォークからの変更をメイン プロジェクトに適用することです。それとももっと良い方法がありますか?ありがとう