5

Is there a TortoiseGit equivalent to TortoiseSVN's "global ignore patterns" setting?

ripper234
  • 222,824
  • 274
  • 634
  • 905

2 Answers2

4

As mentioned in this SO question, git has 3 levels of ignore files.

If you reference one in your ~/.gitconfig, you can manage your global ignore pattern (even though this is not directly integrated in TortoiseGit).

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

global ignore patterns are stored in

  • ~/.gitconfig

where ~ is the users home directory.

Some alias examples (which are stored in mentioned files due to the --global option):

  • git config --global alias.co checkout
  • git config --global alias.br branch
  • git config --global alias.ci commit
  • git config --global alias.st status

See git config for details.

udo
  • 4,832
  • 4
  • 54
  • 82