mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
65c2b2b509
Found by running this command: $ git ls-files -z|xargs -0 perl -0777 -n \ -e 'while (/\b(then?|[iao]n|i[fst]|but|f?or|at|and|[dt]o)\s+\1\b/gims)' \ -e ' {' \ -e ' $n = ($` =~ tr/\n/\n/ + 1);' \ -e ' ($v = $&) =~ s/\n/\\n/g;' \ -e ' print "$ARGV:$n:$v\n";' \ -e ' }' Why not just git grep -E ...? That wouldn't work then the doubled words are separated by a newline. This is derived from a Makefile syntax-check rule in gnulib's maint.mk: http://git.sv.gnu.org/cgit/gnulib.git/tree/top/maint.mk Signed-off-by: Jim Meyering <meyering@redhat.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
36 lines
928 B
Text
36 lines
928 B
Text
git-sh-i18n{litdd}envsubst(1)
|
|
=============================
|
|
|
|
NAME
|
|
----
|
|
git-sh-i18n--envsubst - Git's own envsubst(1) for i18n fallbacks
|
|
|
|
SYNOPSIS
|
|
--------
|
|
[verse]
|
|
eval_gettext () {
|
|
printf "%s" "$1" | (
|
|
export PATH $('git sh-i18n{litdd}envsubst' --variables "$1");
|
|
'git sh-i18n{litdd}envsubst' "$1"
|
|
)
|
|
}
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
This is not a command the end user would want to run. Ever.
|
|
This documentation is meant for people who are studying the
|
|
plumbing scripts and/or are writing new ones.
|
|
|
|
'git sh-i18n{litdd}envsubst' is Git's stripped-down copy of the GNU
|
|
`envsubst(1)` program that comes with the GNU gettext package. It's
|
|
used internally by linkgit:git-sh-i18n[1] to interpolate the variables
|
|
passed to the `eval_gettext` function.
|
|
|
|
No promises are made about the interface, or that this
|
|
program won't disappear without warning in the next version
|
|
of Git. Don't use it.
|
|
|
|
GIT
|
|
---
|
|
Part of the linkgit:git[1] suite
|