Slide 11
Slide 11 text
Tips: fork
元のリポジトリの変更に追
Tips: fork
元のリポジトリの変更に追
従する⽅法
従する⽅法
$ git remote add upstream https://github.com/oss-friends/sandbox.
$ git remote -v
origin https://github.com/kawanamiyuu/sandbox.git (fetch)
origin https://github.com/kawanamiyuu/sandbox.git (push)
upstream https://github.com/oss-friends/sandbox.git (fetch
upstream https://github.com/oss-friends/sandbox.git (push)
$ git pull --rebase upstream master # or `git merge upstream/mast
11