Skip to content

Instantly share code, notes, and snippets.

@thanthese
Created September 13, 2012 01:17
Show Gist options
  • Save thanthese/3711185 to your computer and use it in GitHub Desktop.
Save thanthese/3711185 to your computer and use it in GitHub Desktop.
Search java code in git repo.
# The command
#
# gjava "foo this"
#
# Will display all lines from all java files under
# the current git repository that match the phrase
# "foo this", case insensitive.
function gjava () {
git grep -in "$1" -- "*.java"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment