Githubは、フォークウェアハウスを元の作成者のウェアハウスと同期します

Githubは、フォークウェアハウスを元の作成者のウェアハウスと同期します

1.リモートウェアハウスを表示する

$ git remote -v
# List the current remotes
origin  https://github.com/user/repo.git (fetch)
origin  https://github.com/user/repo.git (push)

2.リモートアップストリーム倉庫を追加します

$ git remote add upstream https://github.com/otheruser/repo.git
# Set a new remote

リモートウェアハウスを追加して表示すると、次の結果が得られます。

$ git remote -v
# Verify new remote
origin    https://github.com/user/repo.git (fetch)
origin    https://github.com/user/repo.git (push)
upstream  https://github.com/otheruser/repo.git (fetch)
upstream  https://github.com/otheruser/repo.git (push)

3.アップストリームブランチを取得します

$ git fetch upstream
# Grab the upstream remote's branches
remote: Counting objects: 75, done.
remote: Compressing objects: 100% (53/53), done.
remote: Total 62 (delta 27), reused 44 (delta 9)
Unpacking objects: 100% (62/62), done.
From https://github.com/otheruser/repo
 * [new branch]      master     -> upstream/master

すべてのブランチを表示:

$ git branch -va
# List all local and remote-tracking branches
* master                  a422352 My local commit
  remotes/origin/HEAD     -> origin/master
  remotes/origin/master   a422352 My local commit
  remotes/upstream/master 5fdff0f Some upstream commit

4.アップストリームブランチをマージします

$ git merge upstream/master
# Merge upstream's master into our own
Updating a422352..5fdff0f
Fast-forward
 README                    |    9 -------
 README.md                 |    7 ++++++
 2 files changed, 7 insertions(+), 9 deletions(-)
 delete mode 100644 README
 create mode 100644 README.md

おすすめ

転載: blog.csdn.net/linghu8812/article/details/109103366