Git Cheatsheet
This site is a reference for Git
Git is a popular VCS (Versioning Control System) developed by Linus Torvalds and released in 2005. It is a distributed version-control system for tracking changes in any set of files. It was developed to allow programmers coordinating their work on source code during software development. Imagine where we would be without! Other VCS exists but Git has gained an enormous adoption since its release.
How to use Branches
Branches are unique versions of your repository which are used to work on the codebase independently from other changes, e.g. a feature branch, a hotfix branch, experimental feature branch.
Using Git Logs to Your Advantage
Show commit history, changes done to a file, who changed what and when and more.
Tagging is used to capture a point in the commit history, such as a realease version.