0
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 branch -a で何も出てこない

Posted at

##git branch -a で何も出てこない
昨日まで使えていたgit branchがなくなっていた。

ビビった。なぜないんだ、と。

##僕の中では魔法のコマンド

git fetch origin

これで解決。

git fetchコマンドは他のリポジトリのデータを取得するものです。

//今回は事前にgit remote -vでリモートの情報を取得していた。
git remote -v
origin  git@github.com:~~~git (fetch)
origin  git@github.com:~~~git (push)

魔法のコマンドfetchを要約すると
「originのデータを取得して〜」
となるため、昨日まで使えていたgit branch -aが復活する。

すげー。

##参考記事

https://www.rough-and-cheap.jp/linux/git-remote-branch-not-show/

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