Git Commands
1. Add
New Changes
git add <file.ext> # To add a specific file
git add . # To add all the files in the current directory
New Branch
git branch <new name> # and remain in the current branch
git checkout -b <new name> # and switch to the new branch...
parashar.hashnode.dev4 min read