24
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

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
24
24
0

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
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?