Global git file location linux

centos, git

Solution

Typing `man git config` has a section called FILES that lists the locations of all the system files. The global Git config file is in `~/.gitconfig`, but there's also a "system" config file, that's usually in `/etc/gitconfig`.

Problem

I am using a Centos I am looking for my global git config file Could anyone let me know where would I find the file?

Original source