git how to see all branches code example
Example 1: how to see all branches in git
git branch -a
Example 2: git get local branches
git branch -l
Example 3: get all the branch in git
git fetch --all
git branch -a
git branch -l
git fetch --all