Getting Started with Git
1. Install Git
2. Configure Git
git config --global user.name "Your Name"
git config --global user.email "[email protected]"3. Initialize a Repository
cd your-project-directory
git init4. Add Files to the Repository
git add .5. Commit Changes
git commit -m "Initial commit"6. Connect to a Remote Repository
7. Push Changes to the Remote Repository
8. Pull Changes from the Remote Repository
9. Branching and Merging
10. Viewing the Commit History
Last updated