Getting Started with Git
Learn the basics of version control with Git
1
Initialize a Repository
Create a new Git repository in your project folder.
git init2
Check Status
See which files have been modified or staged.
git status3
Stage Changes
Add files to staging area before committing.
git add .4
Commit Changes
Save your staged changes with a descriptive message.
git commit -m "Your message"