1
0

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 3 years have passed since last update.

[Git]Forkしたブランチを最新にする方法

Posted at

#はじめに

リポジトリをフォークするフォークを同期する
を参考にして書いています!:sunny:

#方法

:sunny:upstreamに本家のリモートを登録

$ git remote add upstream https://github.com/cakephp/docs.git

https://github.com/cakephp/docs.gitはFork元のURLに変更してください。

※含まれているかの確認は$ git remote -vのようにしてください。以下画像はサンプルです。

スクリーンショット 2020-03-15 14.50.52.png

:sunny:本家の内容を持ってくる。
:man_tone3:今回の元のブランチが私は4.xなのでupstream/4.xに入ってくるらしい、、、

$ git fetch upstream

:sunny:あとは自分の最新にしたいブランチのところで持ってきたものをマージする。今回は4.xの部分で以下コマンドを打った感じです!

$ git merge upstream/4.x

4.xのところは人それぞれです。

スクリーンショット 2020-03-15 15.04.07.png

なんとなくいらない部分隠してみました!

#最後に
終わりです!

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?