This is an old revision of the document!
How to examine a remote with git remote
and git ls-remote
.
Local branches:
$ git branch * master $
Remote branches:
$ git branch -r origin/HEAD -> origin/master origin/master $
All branches:
$ git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/master $
Verbose branches:
$ git branch -v * master 610cd4eadec4 Merge branch 'x86-uv-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip $
$ git branch -vv * master 610cd4eadec4 [origin/master] Merge ... ^^^^^^^^^^^^^^^ $