Skip to content

Instantly share code, notes, and snippets.

@cmdcolin
Created April 16, 2019 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmdcolin/04e2378b60f4457a41904c659368066f to your computer and use it in GitHub Desktop.
Save cmdcolin/04e2378b60f4457a41904c659368066f to your computer and use it in GitHub Desktop.
git grep alias
ag () {
local dir="${2:-./*}"
git grep -i $1 -- $dir ':(exclude)*.snap' ':(exclude)*.json'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment