Skip to content

Latest commit

 

History

History
80 lines (38 loc) · 833 Bytes

File metadata and controls

80 lines (38 loc) · 833 Bytes

Git Installation 📦

Git is a distributed version control system used to track changes and manage software projects.


Check Git Installation

Check if Git is installed:

git --version

Example:

git version 2.43.0


Installing Git on Linux 🐧

Ubuntu / Debian

Install Git:

sudo apt update

sudo apt install git

Fedora

sudo dnf install git

Arch Linux

sudo pacman -S git


Installing Git on Windows 🪟

Download Git:

https://git-scm.com/downloads


Installing Git on macOS 🍎

Using Homebrew:

brew install git


First Git Configuration ⚙️

Set username:

git config --global user.name "Your Name"

Set email:

git config --global user.email "you@example.com"

Check configuration:

git config --list


Next Steps 🚀

Continue to:

Configuration Guide