Git Commands Cheet Sheet
This guide includes an introduction to Git, a glossary of terms and lists of commonly used Git commands. What is Git? 🤔 Git gives each developer their own repository containing the entire history of changes. More formally Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. Before you get started with Git, you need to understand some important terms:😀 Commit:- It represents a specific point in your project's history. Checkout:- Checkout command to switch between branches. Fetch:- Fetch command copies and downloads all of a branch's files to your device. Fork:- A fork is a copy of a repository. Take a copy of the project for doing some changes without affecting your main project. Head:- It represents the most current commit of the repository you're currently working in. The commit at the top of a branch is called th...