Basic Git Cheatsheat

Git is a very powerful version control and a project managing tool. Every dev has to use git for projects. Below is my git cheatsheat. Below are some basic commands and some settings every developer should know Basics git init for initiating a git repo in a folder git add to add file/folder to staging area git commit to commit changes git push to publish changes to remote git status to check status of git repo including staged and unstaged changes Branches You can use branches for making a copy of repo, implementing a feature and then merging it back to main branch...