🌾
[GitHub] fork元のレポジトリーをupstreamに設定する
はじめに
この記事では、fork元のレポジトリーをupstreamに設定する方法を解説します。
結論
1. 状況を確認する
下記コマンドで状況を確認します
git remote -v
出力結果を確認する
$ git remote -v
origin https://github.com/user-name/sample-project.git (fetch)
origin https://github.com/user-name/sample-project.git (push)
2. upstreamに設定する
下記コマンドでupstreamに設定する
git remote add upstream https://github.com/company-name/sample-project.git
再び、下記コマンドで状況を確認する
git remote -v
出力結果を確認する
$ git remote -v
origin https://github.com/user-name/sample-project.git (fetch)
origin https://github.com/user-name/sample-project.git (push)
upstream https://github.com/company-name/sample-project.git (fetch)
upstream https://github.com/company-name/sample-project.git (push)
Discussion