- Download and install git from git-scm
- Check git version
git --version
- Let Git know who you are
git config --global user.name "your name"
git config --gloabal user.email "your email"
4. Check the status of files/project
```bash
git status
# the short way
git status --short
# ?? - Untracked files
# A - Files added to stage
# M - Modified files
# D - Deleted files
- Add a file to the staging enviroment
git add <"filename">
# or
git add .
- Committing our project files
git commit -m "our message"
# or we can commit and add commands together
git commit -am "your message"