Git Branching and Pushing Guide
Checking BranchesChecking Branches To see all branches in your repository: ```bash git branch ``` ### Creating a New Branch To create a new branch: ```bash git branch <branch_name> ``` **Example:** ```bash git branch experimental ``` ### Switching Br...
jaynabwebdev.hashnode.dev4 min read