how to create a new branch in git from the master code example

Example 1: git create new branch

// create and checkout new branch in one line
git checkout -b new_branch

Example 2: git bring your changes to a new branch

git checkout -b <new-branch>
// This will leave your current branch as it is, create and checkout a new branch and keep all your changes. You can then stage changes in files to commit with:

git add <files>
//and commit to your new branch with:

git commit -m "<Brief description of this commit>"

Example 3: how to create a branch in git

$ git branch [name of branch]