Essential Git Operations
Git Workflow Overview
Files transition through three stages: working directory → staging area → local repository → remote repository.
Installation
$ sudo yum install -y git
$ git --version
git version 2.34.1
Repository Initialization
$ mkdir project
$ cd project
$ git init
Initialized empty Git repository in /home/user/project/.git/
$ ls -a
.g ...
Posted on Sat, 16 May 2026 03:58:09 +0000 by gassaz