109
103

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 のリモートのブランチを確認する

Last updated at Posted at 2016-07-05

クイックリファレンス

Shell
git fetch
git branch -a

リモートのブランチを確認したい

GitHub や Bitbucket を使って数人で開発するとき、たくさんのブランチを切ってコミットすることが多いと思います。

そういうときに自分で切ったブランチや他の人が切ったブランチをすべて確認したいときがあります。

単に git branch だけだと自分がローカルで切ったブランチしか表示されません。

-a オプション

そんなときは -a オプションを使います。

まずは最新のリモートのブランチの情報をローカルに反映させるために、fetchを行います。

Shell
git fetch

次に -a オプションをつけてブランチを確認します。

Shell
git branch -a

すると、リモートにある他の人が切ったブランチも含め、すべてのブランチを確認することができます。

Git を使う上では基本的なオプションかもしれませんが、今まで知らなかったのでちょっとしたメモです。

109
103
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
109
103

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?