memo.xight.org

日々のメモ

GitHubでFork/cloneしたリポジトリに追従する

Summary

GitHubでFork/cloneしたリポジトリに追従する備忘録

Fork元のリポジトリを指定

$ git remote add upstream https://github.com/caskroom/homebrew-cask.git


Fork元のリポジトリを追従してoriginにpush

$ git checkout master
$ git pull upstream master
$ git push origin master

$ git checkout my_branch
$ git rebase master

$ git push origin my_branch -f


Reference

GitHubでFork/cloneしたリポジトリを本家リポジトリに追従する - Qiita
http://qiita.com/xtetsuji/items/555a1ef19ed21ee42873

Github で Fork してから Pull Request をするまでの流れ | けーこ in サンフランシスコ
http://kik.xii.jp/archives/179