Git 再入門: 引数がない git pull のデフォルトの挙動 (アップストリーム, トラッキングブランチについて)

前章で git pull の使い方を紹介 した際に git pull <remote> <src> のように引数を与えると説明しましたが、 実はこの2つの引数を省略して単に git pull として実行することも出来ます。 このように引数を省略した時には、git はどのリモートリポジトリのブランチを選んで現在のブランチに pull するのでしょうか。

トラッキングブランチ (Tracking Branch) とアップストリーム (Upstream)

git pull/push で引数を省略できるように、Git ではローカルブランチをリモートトラッキングブランチに対して関連付けることができます。 リモートトラッキングブランチに関連付けられたローカルブランチのことを トラッキングブランチ (Tracking Branch) と呼びます。 逆に関連付けられているリモートトラキングブランチのことはアップストリーム (Upstream) と呼びます。

アップストリームの設定と確認

既存のブランチをリモートトラッキングブランチに関連付けてみましょう。 これは git branch -u <upstream> <branch> で行うことができます (<branch> は省略可。省略した際は現在のブランチが暗黙的に指定される)。

$ cd /tmp/my/workingdir/alice
$ git branch -u shared/master master
Branch master set up to track remote branch master from shared.

これでローカルブランチ master が リモートトラキングブランチ shared/master と関連付けられました。 ローカルブランチがどのリモートトラキングブランチに関連付けられているかは、 git branch -vv, git remote show <repository> の出力あるいは .git/config ファイルの中身から確認できます。

$ git branch -vv
* master   d623bbf [shared/master] Merged.

ブランチの upstream が存在する場合 [] で囲まれて表示されます。

$ git remote show shared
  * remote shared
  (略)
  Local branch configured for 'git pull':
    master merges with remote master
  (略)

このように、master ブランチが sharedmaster ブランチに関連付けられていることが 'git pull' の項目に表示されます。 また、.git/config ファイルを開くと下のような項目が追加されているはずです。

[branch "master"]
 remote = shared
 merge = refs/heads/master

これで、アップストリームが設定できたので git pull を引数なしで実行してみましょう (-v をつけると分かりやすいです)。

$ git pull
Already up-to-date.

ローカルブランチとリモートトラキングブランチの関連付けは git branch --unset-upstream <local_branch> で解除できます。 解除すると、git pull は引数なしでは動かなくなります。

$ git branch --unset-upstream master
$ git pull
fatal: No remote repository specified.  Please, specify either a URL or a
remote name from which new revisions should be fetched.

git remote show shared の出力と .git/config の中身をみて、関連付けが解除されていることを確認してみてください。

暗黙的に設定されるアップストリーム

ここまで読んで、アップストリームの設定はしたことないけれど git pull は引数なしで普段使っていると思った人がいるかもしれません。 実はアップストリームの設定は暗黙的に行われることがあります。 そのため、アップストリームの設定を明示的にしなくても git pull は多くの場合で引数なしで使えるようになっています。

アップストリームの設定は以下の様な場合に暗黙的に行われます

  • リモートトラキングブランチからブランチを作成した場合

    • git branch <local> <remote>/<branch> (あるいは git checkout -b <local> <remote>/<branch>) を実行してリモートトラキングブランチから ブランチを作成した場合、<local> と <remote>/<branch> が関連付けられます。 (参考: git branch の --track の項目)
  • git clone で複製した場合

    • git clone を使うと複製元のリポジトリが origin として自動的に登録され、 origin/master からブランチ master が自動的に作成されます。 この際、masterorigin/master が関連付けられます。
最終更新: 2015/5/1