-1

I'm on Windows 7 and trying to completely format Git, but re-installing it I notice the previous settings persist. How can I completely delete Git and start fresh? Where does it store these files?

  • 1
    "format git": these words don't exist together. – Marcus Müller Nov 23 '22 at 09:52
  • to see where a config parameter comes from, you can run : `git config --show-origin `. To see this for *all* of your config parameters : `git config --list --show-origin` – LeGEC Nov 23 '22 at 10:12

1 Answers1

1

~ /.gitconfig on unix systems and C:\Users\.gitconfig on windows

CreepyRaccoon
  • 826
  • 1
  • 9
  • 19