Skip to content

Commit 2f3c0f1

Browse files
authored
all: restore .gitignore rule for extensionless binaries (#27019)
1 parent 3751312 commit 2f3c0f1

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
# ignore sub-level extensionless build outputs
2+
*/**/*
3+
!*/
4+
!*.*
5+
16
# ignore generated binaries and object files
2-
# Do not add broad unignore rules like !*.*; they override local excludes.
37
*.exe
48
*.o
59
*.so
@@ -35,6 +39,9 @@ a.out
3539
fns.txt
3640
.noprefix.vrepl_temp.v
3741

42+
# Prefix local scratch/repro files with tmp. when they should stay untracked.
43+
tmp.*
44+
3845
# ignore temp and cache directories
3946
temp/
4047
tmp/
@@ -67,7 +74,6 @@ cache/
6774
*~
6875
~*
6976
.sesskey
70-
/tmp*
7177
*.db
7278
*.swp
7379
*.swo
@@ -124,7 +130,6 @@ vls.log
124130
*.tmperr
125131

126132
.vtmp_cov_*/
127-
*/**/tmp.*
128133

129134
# ignore Intellij files
130135
.idea/

0 commit comments

Comments
 (0)