Essential git CLI commands
Frequently used commands:
git init # initializes.
git add . # adds all files
git add <file 1> <filel 2> # adds individual file.
git commit -m "descriptive message." # commits
git branch <branch name> # creates a new branch
git checkout <branch ...
emeeran.dev2 min read