Handling branches using the Git CLI

After the Git clone, you will, by default, get code for the default branch set on your repository. In our case, it is the master branch. Let's check which branch we have cloned using the following command:

$git branch 
* master 

The asterisk in front of the branch name indicates a current branch.

Let's create a test branch:

$git branch test

This will create a new branch named test, on your local Git repository:

    $git branch
    * master
      test
  

Now you will see two branches in your local Git repository, the  git branch <BRANCH_NAME> command will create a branch from the current branch. So, the test branch is created from the master branch.

Switch to the newly created the test branch and push it to the remote ...

Get DevOps for Salesforce now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.