This repository contains resources and examples for learning Git version control.
- Install Git from git-scm.com
- Configure your name and email:
git config --global user.name "Your Name" git config --global user.email "[email protected]"
git init- Initialize a repositorygit clone- Clone an existing repositorygit add- Stage changesgit commit- Commit changesgit push- Push to remotegit pull- Fetch and merge from remote
MIT