gitのリポジトリ一覧はgit ls-remote --heads
で取得できます。
しかし、余計な情報も多く表示されるため、単にブランチ名の一覧を表示したいような場合はsedなどでの加工が必要です。
git ls-remote --heads | sed -e 's#.*refs/heads/##'
Go to list of users who liked
More than 5 years have passed since last update.
gitのリポジトリ一覧はgit ls-remote --heads
で取得できます。
しかし、余計な情報も多く表示されるため、単にブランチ名の一覧を表示したいような場合はsedなどでの加工が必要です。
git ls-remote --heads | sed -e 's#.*refs/heads/##'
Register as a new user and use Qiita more conveniently
Go to list of users who liked