Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 347 Bytes

git_commands.md

File metadata and controls

8 lines (7 loc) · 347 Bytes

Check which Git branches are tracking which remote / upstream branch?

git remote show origin

  • Replace 'origin' with whatever the name of the remote is.

List all branches on the local system including the remote branch information if they are tracked.

git branch -vv

Reference