Git Branches: Creating, Updating, Merging and DeletingThem
Create and switch to a new branch in local repository:
git checkout -b new_feature
Make changes in that branch, then to make commit:
git add .
git commit -m "Implemented new feature"
Push this new
ashautomates.hashnode.dev3 min read