Reputation: 1092
I want to track the files which have no file extension. I am using following .gitignore file
.gitignore
*.* # THIS CATCHES EVERYTHING
!*.asm
# I TRIED THE BELOW directives
#*.\d{1}*
#*.[?]*
#*.[?*]
Point me in the right direction!
Upvotes: 1
Views: 216