forked from scratchfoundation/scratch-vm
-
-
Notifications
You must be signed in to change notification settings - Fork 2
merge_scratch vm_develop
Kouji Takao edited this page Apr 28, 2020
·
9 revisions
アップストリーム(https://github.com/LLK/scratch-vm.git )のdevelopブランチをマージする手順を説明します。
おおむね2週間に1回程度行うといいでしょう。
初めてマージ作業をする場合は以下のコマンドを実行して下さい。
$ git remote add upstream https://github.com/LLK/scratch-vm.git
以下のコマンドで、設定を確認することができます。下の2行が表示されていればOKです。
$ git remote -v
origin https://github.com/smalruby/scratch-vm.git (fetch)
origin https://github.com/smalruby/scratch-vm.git (push)
upstream https://github.com/LLK/scratch-vm.git (fetch)
upstream https://github.com/LLK/scratch-vm.git (push)
$ git checkout develop
$ git pull --rebase
$ git fetch -p upstream
$ git pull upstream develop
ここで、コンフリクトが発生すれば解消します。
随時追記予定。