Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GIT cli を使用して、リモート リポジトリに存在する git ブランチの数を把握する方法はありますか?
私が望んでいないブランチを、誰かが無意識のうちにリモート リポジトリにプッシュしたかどうかを確認できれば幸いです。
git branch -r構成されたすべてのリモートのすべてのブランチを一覧表示します。git fetch --all最新であることを確認するために、最初に実行することをお勧めします。
git branch -r
git fetch --all
gitを使用git ls-remote <url/to/remote/repo.git>して、リモート リポジトリに存在するすべての参照のリストを取得できます。
git ls-remote <url/to/remote/repo.git>