1. Урок 1.00:02:34
    Create local repos with git init
  2. Урок 2.00:01:06
    Copy remote repos to local machines with git clone
  3. Урок 3.00:03:42
    Capture code history snapshots with git add/commit/push
  4. Урок 4.00:01:26
    Document repos with README files
  5. Урок 5.00:01:38
    Sync local and remote repos with git pull
  6. Урок 6.00:02:19
    Isolate feature development with git branch
  7. Урок 7.00:02:27
    Sync branches with git merge
  8. Урок 8.00:04:36
    Resolve merge conflicts with git status
  9. Урок 9.00:02:51
    Save uncommitted changes with git stash
  10. Урок 10.00:02:03
    Navigate git command pager output with Unix less commands
  11. Урок 11.00:00:40
    View commit history with git log
  12. Урок 12.00:02:00
    Format commit history with git log arguments
  13. Урок 13.00:06:49
    Filter commit history with git log arguments
  14. Урок 14.00:05:20
    Compare file changes with git diff
  15. Урок 15.00:01:34
    Show who changed a line last with git blame
  16. Урок 16.00:02:14
    Use semantic versioning with git tag
  17. Урок 17.00:05:42
    Clean up commits with git rebase
  18. Урок 18.00:02:49
    Diagnose which commit broke something with git bisect
  19. Урок 19.00:02:58
    Run scripts on git events with git hooks
  20. Урок 20.00:02:33
    Configure global settings with git config
  21. Урок 21.00:02:36
    Remove unnecessary git tracking with .gitignore files
  22. Урок 22.00:00:57
    Remove all unnecessary git tracking with a global .gitignore file