config: resolve symlinks in conditional include's patterns
commit86f951570839e241cfa8effbe195674193693a7f
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Wed, 5 Apr 2017 10:24:39 +0000 (5 17:24 +0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 15 Apr 2017 06:51:38 +0000 (14 23:51 -0700)
tree06d97d0363a93e18dc2185937331ca522cb4a35b
parent4aad2f1627bb74948874c0f31e8ce256bf236aa6
config: resolve symlinks in conditional include's patterns

$GIT_DIR returned by get_git_dir() is normalized, with all symlinks
resolved (see setup_work_tree function). In order to match paths (or
patterns) against $GIT_DIR char-by-char, they have to be normalized
too. There is a note in config.txt about this, that the user need to
resolve symlinks by themselves if needed.

The problem is, we allow certain path expansion, '~/' and './', for
convenience and can't ask the user to resolve symlinks in these
expansions. Make sure the expanded paths have all symlinks resolved.

PS. The strbuf_realpath(&text, get_git_dir(), 1) is still needed because
get_git_dir() may return relative path.

Noticed-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.c
t/t1305-config-include.sh