Git files have 3 main modes:
- Committed
- Information is securely stored in local database.
- Modified
- File has been changed but NOT committed to the database.
- Staged
- Flagged a file’s changed version to be committed in the next snapshot
- $ git clone (Place link here)
- $ git status
- git add filename
- git commit -m "Insert change here"
- git push origin main