1

I am using git in my project. My home directory contain few files like

Title v2.12.12.exe
Title v1.4.21.exe
Title v3.42.11.exe

All these starts with Title v and ends with .exe and contains some version in the middle. What changed should I made in .gitignore to ignore these types of file?

1 Answers1

2

Just tried it and the simplest seem to work:

Title v*.exe

The only caveat is that you may catch more than expected like "Title v-not.a.valid.version.exe"

Aurélien Thieriot
  • 5,853
  • 2
  • 24
  • 25