I need to add to the phased area all ini files of the current directory and its subdirectories recursively. Is there one filter for him?
I use it:
git add *.ini .\*.ini
So, I have indicated two selection rules. Can I write it more compactly with a single rule?
I tried the following options: **/\*.ini , ./**/\*.ini , */**/\*.ini , but they do not match.
source share