git command to view all branches code example
Example 1: how to see all branches in git
git branch -a
Example 2: how to see branches git cmd
git branch #To see local branches, run this command
git branch -r #To see remote branches, run this command
git branch -a #To see all local and remote branches, run this command
Example 3: list all branhces git
git branch -a
Example 4: git get all branches and code
git checkout --detach
git fetch origin '+refs/heads/*:refs/heads/*'