Skip to content

Instantly share code, notes, and snippets.

@karlb
Created November 3, 2025 13:41
Show Gist options
  • Select an option

  • Save karlb/db2e2ca4070526e950dc8ec666c420cd to your computer and use it in GitHub Desktop.

Select an option

Save karlb/db2e2ca4070526e950dc8ec666c420cd to your computer and use it in GitHub Desktop.
Git cheatsheet

Searching

Search in all files at a specific revision

git grep $PATTERN $REVISION

Find commits where the diff matches

git log -S $PATTERN

Find commits where the description matches

git log --grep $PATTERN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment