What is $ (prefix) to $ (prefix) / etc / gitconfig?

gitconfig (1) :

If not explicitly specified with -file, there are four files where git config will look for configuration options:

...

$ (prefix) / etc. / gitconfig

System configuration file.

What is $(prefix) on $(prefix)/etc/gitconfig ?

+6
git git-config configuration prefix
Oct 31 '13 at 18:02
source share
1 answer

The prefix git environment variable has been compiled. It is usually empty, so the path is /etc/gitconfig .

+8
Oct 31 '13 at 18:04 on
source share



All Articles