Avec l'exemple de @kynan comme base j'ai fait ce script et l'ai mis dans mon chemin ( ~/bin/
) comme gg
. Il utilise git grep
mais évite certains types de fichiers spécifiés.
Dans notre référentiel, il y a beaucoup d'images. J'ai donc exclu les fichiers images, ce qui réduit le temps de recherche à un tiers si je recherche dans l'ensemble du référentiel. Mais le script pourrait facilement être modifié pour exclure d'autres types de fichiers ou geleralpatterns.
#!/bin/bash
#
# Wrapper of git-grep that excludes certain filetypes.
# NOTE: The filetypes to exclude is hardcoded for my specific needs.
#
# The basic setup of this script is from here:
# https://stackoverflow.com/a/14226610/42580
# But there is issues with giving extra path information to the script
# therefor I crafted the while-thing that moves path-parts to the other side
# of the '--'.
# Declare the filetypes to ignore here
EXCLUDES="png xcf jpg jpeg pdf ps"
# Rebuild the list of fileendings to a good regexp
EXCLUDES=`echo $EXCLUDES | sed -e 's/ /\\\|/g' -e 's/.*/\\\.\\\(\0\\\)/'`
# Store the stuff that is moved from the arguments.
moved=
# If git-grep returns this "fatal..." then move the last element of the
# arg-list to the list of files to search.
err="fatal: bad flag '--' used after filename"
while [ "$err" = "fatal: bad flag '--' used after filename" ]; do
{
err=$(git grep "$@" -- `git ls-files $moved | grep -iv "$EXCLUDES"` \
2>&1 1>&3-)
} 3>&1
# The rest of the code in this loop is here to move the last argument in
# the arglist to a separate list $moved. I had issues with whitespace in
# the search-string, so this is loosely based on:
# http://www.linuxjournal.com/content/bash-preserving-whitespace-using-set-and-eval
x=1
items=
for i in "$@"; do
if [ $x -lt $# ]; then
items="$items \"$i\""
else
moved="$i $moved"
fi
x=$(($x+1))
done
eval set -- $items
done
# Show the error if there was any
echo $err
Note 1
Selon ce il devrait être possible de nommer la chose git-gg
et être capable de l'appeler comme une commande git normale comme :
$ git gg searchstring
Mais je n'arrive pas à le faire fonctionner. J'ai crée le script dans mon ~/bin/
git-gg
lien symbolique dans /usr/lib/git-core/
.
Note 2
La commande ne peut pas être transformée en une commande régulière sh
git-alias car il sera alors invoqué à la racine du repo. Et ce n'est pas ce que je veux !
0 votes
Le faire sur bash serait une solution de contournement possible : stackoverflow.com/questions/216995/
9 votes
Cette fonctionnalité a été ajoutée dans la version 1.9.0. voir ma réponse ci-dessous