Johannes Sixt <j.sixt@xxxxxxxxxxxxx> writes: > Junio C Hamano schrieb: >> Johannes Sixt <j6t@xxxxxxxx> writes: >> >>> The pattern for the *.po files was anchored at the repository's root, but >>> this would match the files only in the git-gui repository itself, but >>> not in the version that is subtree-merged into git.git. >>> >>> Signed-off-by: Johannes Sixt <j6t@xxxxxxxx> >>> --- >>> .gitattributes | 2 +- >>> 1 files changed, 1 insertions(+), 1 deletions(-) >>> >>> diff --git a/.gitattributes b/.gitattributes >>> index f96112d..c69f4a0 100644 >>> --- a/.gitattributes >>> +++ b/.gitattributes >>> @@ -1,3 +1,3 @@ >>> * encoding=US-ASCII >>> git-gui.sh encoding=UTF-8 >>> -/po/*.po encoding=UTF-8 >>> +po/*.po encoding=UTF-8 >> >> Hmm, really? > > No, not really. =:{ > > I observed some strangeness with gitk. But it turned out that this was an > old development version that got accidentally installed somewhere in $PATH. > > Sorry for the noise. Actually, while I was responding to your message, I looked at gitattributes documentation and noticed that it does not say anything about how the "glob" is used to match paths. The rules applied should be the same as those from gitignore (except obviously we do not have negated pattern that gitignore has, because it does not mean "path not matching this pattern" over there), and it should be documented. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html