Git Basics
- 4 Ways to get started
- Creating a local empty repository
- Create first file
- File status
- Add first file
- Commit first file
- Making some changes
- Untracked and Modified
- Untracked/Modified/Staged
- Commit the file(s)
- See the changes
- Stage and HEAD
- Remove from stage (unstage)
- Drop local changes (restore to HEAD or to index)
- Add all the files
- Git ignore
- .git/info/exclude
- .gitkeep
- add and commit in one step
- Move a file
- Remove a file
- Frequency of commits
- log
- gitk
- blame
- Exercise