Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,560,584
Community Members
 
Community Events
185
Community Groups

When using System git, my git config --global file is still SourceTree's?

I'm using SourceTree and Git 2.21.0 for Windows and was having a lot of trouble with configuration. SourceTree is set to use the system git install and shows the proper 2.21.0 version number. I ran these commands in a non-repository directory in command prompt and got surprising results:

- `git config --list` outputs mostly my `%ProgramData%\Git\Config` file's contents.

- `git config --global --list` output conflicting configuration data

- `git config --global --edit` opened `C:\Users\Me\.gitconfig`. I thought this was just the SourceTree global, I expected it to open the one in ProgramData.

- `git config --system --edit` opened `C:\Program Files\Git\mingw64\etc\gitconfig` as expected

- From the `%ProgramData%\Git\` directory, `git config --edit` produced an error.  

> fatal: not in a git directory

 

How is `git config` able to list my `%ProgramData%\Git\Config` contents but not edit that file and what is it if it isn't System, Global, or Local config?  Why is `git config --global` using the SourceTree file, is that just the default path to the Global config for git on Windows?

1 answer

1 accepted

2 votes
Answer accepted

Git for Windows has a 4th configuration file that cannot currently (v2.21.0) be edited from command line that is stored as `C:\Program Data\Git\config`. They are loaded before even System and so have the lowest priority.

Using `git config --list --show-origin` will show you where each configuration comes from.

Somehow, I got it in my head that this was the location of the global config file in windows when it is actually still `C:\Users\<UserName>\.gitconfig` which is the same file used by SourceTree's embedded git if you use that.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events