Hi,
is it possible to remove from the index all the git folders?
If yes, how to?
Thank you
How to esclude all git folders from the index?
Re: How to esclude all git folders from the index?
What does a git folder look like?
Anyhow, maybe something can be working out with, Tools | Options | Indexes -> Exclude.
Anyhow, maybe something can be working out with, Tools | Options | Indexes -> Exclude.
Re: How to esclude all git folders from the index?
It's "folder: .git"What does a git folder look like?
Code: Select all
Anyhow, maybe something can be working out with, Tools | Options | Indexes -> Exclude.Thank you
Re: How to esclude all git folders from the index?
There's a Add Filter button. You can defineaborruso wrote: Thu Dec 20, 2018 1:54 pm I know of "Tools | Options | Indexes -> Exclude", but how to add this kind of folder
.gitRe: How to esclude all git folders from the index?
Thank you very much
Re: How to esclude all git folders from the index?
I have inserted regex:"^.git$", but it does not workNotNull wrote: Thu Dec 20, 2018 3:23 pm There's a Add Filter button. You can defineas a filter..git
Re: How to esclude all git folders from the index?
Tools->Options->Exclude->Add Filter
and type
.git
[Edit: I tried your regex in filter and it still works for me]
I Added: regex:^.git$
and type
.git
[Edit: I tried your regex in filter and it still works for me]
I Added: regex:^.git$
Re: How to esclude all git folders from the index?
It works, but it should also work with quotes regex:"^.git$"vanisk wrote: Thu Dec 20, 2018 5:28 pm [Edit: I tried your regex in filter and it still works for me]
I Added: regex:^.git$
Thank you