Git command cheatsheet
Configuring Git git config –global user.name “Your Name” git config –global user.email “[email protected]” Basic Git Commands git status git add <file_name> git add . git commit -m “Your commit message here” Branching and Merging git branch <branch_name> git checkout <branch_name> git switch <branch_name> git checkout -b <branch_name> git merge <branch_name> […]