LoginSignup
24

More than 5 years have passed since last update.

githubでfork元から最新を取り込む

Posted at

例えばranguba/rroongaからforkしたongaeshi/rroongaがあって、ranguba/rroongaの最新版を取り込みたいような場合。

ranguba/rroonga をremoteに fork_master といった名前で登録し、fetch->mergeすればよい

git remote add fork_master git://github.com/ranguba/rroonga.git
git fetch fork_master
git merge remotes/fork_master/master

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
24