List contributors by commit count git
Ranked list of authors by total commit count
git shortlog -sn --all
more git
all 45 commands →
Search commit messages
git log --all --grep='fix:' --oneline
Search commit diffs (pickaxe)
git log -S 'functionName' --patch --all
Partial clone (blobless)
git clone --filter=blob:none <url>
Worktree for parallel branches
git worktree add ../hotfix-branch hotfix/urgent
Interactive rebase last N commits
git rebase -i HEAD~5