git branch -a で何も出てこない


git branch -a で何も出てこない

昨日まで使えていたgit branchがなくなっていた。

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

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

git fetch origin

これで解決。

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

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

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

すげー。

参考記事

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