- Version control | Keep track of changes in projects.
- Website that hosts
git
repositories. - Make it easier for developers to share there codes and collaborate with other developers.
Command | Meaning |
---|---|
git init |
Initialize local repository |
git clone |
Create a copy of repository on local from GitHub |
git status |
Check status |
git add |
Add a file to staging area |
git commit |
Commit changes |
git push |
Push changes to repository |
git pull |
Pull changes from repository |
git log |
View changes |