git Init
- Initialize a new empty repository in the current folder
git status
- Shows if there's difference in the files
git add
- Add files to the commit stage
git commit
- Add changes to the log
git push
- Update changes to the remote repository
git merge
- Merge differents branchs
git clone
- Clones an existing repository
git pull
- Retrieve changes from another repository and merge with your current repository
git log
- Shows the commits log
