Bisect — find broken commit git
Binary search through history to find a regression
git bisect start && git bisect bad HEAD && git bisect good <good-sha>
more git
all 45 commands →
Worktree — multiple branches
git worktree add ../feature-branch feature/my-feature
Submodule update
git submodule update --init --recursive
Show file at specific commit
git show <sha>:path/to/file
Log with graph
git log --oneline --graph --decorate --all | head -40
Grep across history
git log -S 'password' --oneline --all