forkして作ったリポジトリを本家に追従させるgitの手順メモ
参考
- GitHubでFork/cloneしたリポジトリを本家リポジトリに追従する
手順
$ git clone git@github.com:hyuki0000/mastodon.git
$ cd mastodon
$ git remote -v
origin git@github.com:hyuki0000/mastodon.git (fetch)
origin git@github.com:hyuki0000/mastodon.git (push)
$ git branch -a
$ git remote add upstream git://github.com/tootsuite/mastodon.git
$ git remote -v
origin git@github.com:hyuki0000/mastodon.git (fetch)
origin git@github.com:hyuki0000/mastodon.git (push)
upstream git://github.com/tootsuite/mastodon.git (fetch)
upstream git://github.com/tootsuite/mastodon.git (push)
$ git branch -a
$ git fetch upstream
$ git branch -a
$ git merge upstream/master
$ git status
$ git push origin master
$ git status