View, create, or delete branches. This command helps you manage different lines of development in your project.
1. List all branches: git branch
2. Create a new branch: git branch [new_branch_name]
3. Delete a branch (locally): git branch -d [branch_name]
4. Delete a branch (remotely): git push [remote_name] --delete [branch_name]