git --version
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git config --list
git init
git clone <repository_url>
git status
git add <file>
git commit -m "Your commit message"
git log
git push origin main
git pull origin main
git branch <branch_name>
git checkout <branch_name>
git merge <branch_name>
git branch -d <branch_name>
git reset --soft HEAD~1
git checkout -- <file>
git revert <commit_hash>