Skip to content

Commit dbe3142

Browse files
authored
Merge pull request #15003 from rmcdermo/master
Git: ignore any directory with UNTRACKED in title when doing git clea…
2 parents f0383b1 + 6fe9424 commit dbe3142

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,13 @@ Verification/Timing_Benchmarks/t*.fds
104104
CMakeUserPresets.json
105105
Build/cmakeb/
106106
.vscode/
107+
108+
# Anything stored in your repo with UNTRACKED in its directory name
109+
# will not be wiped out if you do `git clean -dXf` (note capital X!)
110+
111+
# Ignore any directory that has "UNTRACKED" in its name, recursively
112+
*UNTRACKED*/
113+
114+
# Ignore everything under such directories
115+
*UNTRACKED*/**
116+

0 commit comments

Comments
 (0)