This is worth remembering:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# find out what branches we have PS> git branch master * testing # find out what branches we have and also show the latest commits to these PS> git branch -v master 9743903 Removed a commented out line in Get-RegKey. * testing 43d7d10 More changes to Uninstall-MSI. Work in Progress. Not tested. # find out what branches we have and also show the latest commits to these # and what their upstreams are PS> git branch -vv master 9743903 [origin/master] Removed a commented out line in Get-RegKey. * testing 43d7d10 [origin/testing] More changes to Uninstall-MSI. Work in Progress. Not tested. |
These switches work with the -a
switch too:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# find out what branches we have - local & remote PS> git branch -a 0.1 master * testing remotes/origin/0.1 remotes/origin/HEAD -> origin/master remotes/origin/master remotes/origin/testing # find out what branches we have (local & remote) # and also show the latest commits to these PS> git branch -av 0.1 9743903 Removed a commented out line in Get-RegKey. master 9743903 Removed a commented out line in Get-RegKey. * testing 43d7d10 More changes to Uninstall-MSI. Work in Progress. Not tested. remotes/origin/0.1 9743903 Removed a commented out line in Get-RegKey. remotes/origin/HEAD -> origin/master remotes/origin/master 9743903 Removed a commented out line in Get-RegKey. remotes/origin/testing 43d7d10 More changes to Uninstall-MSI. Work in Progress. Not tested. # find out what branches we have (local & remote) # and also show the latest commits to these and what their upstreams are PS> git branch -avv 0.1 9743903 Removed a commented out line in Get-RegKey. master 9743903 [origin/master] Removed a commented out line in Get-RegKey. * testing 43d7d10 [origin/testing] More changes to Uninstall-MSI. Work in Progress. Not tested. remotes/origin/0.1 9743903 Removed a commented out line in Get-RegKey. remotes/origin/HEAD -> origin/master remotes/origin/master 9743903 Removed a commented out line in Get-RegKey. remotes/origin/testing 43d7d10 More changes to Uninstall-MSI. Work in Progress. Not tested. |
Don’t forget: this is cached information.