How can it possible to get all names of some remote origin branches?
I started from --remote --list options, but got redundant origin/HEAD -> origi
--remote --list
origin/HEAD -> origi
An alternate method, after some research into the same problem, is:
git for-each-ref --format='%(refname:strip=2)' refs/remotes/
This will give a sorted list of your local refs for the named remote at the point you last fetched.
You can adjust this for their tags etc.