Skip to content

Commit 12b2a36

Browse files
cfergeaupraveenkumar
authored andcommitted
gitignore: Add leading / to most entries
'crc' in gitignore is equivalent to **/crc, in particular this will match the path pkg/crc, which is unintended. Adding a / at the beginning of the matches ensure they only match in the current directory.
1 parent 56d017b commit 12b2a36

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
out/
2-
docs/build/
3-
release/
1+
/out/
2+
/docs/build/
3+
/release/
44
/release-info.json
55
*.crcbundle
6-
tmp-embed/
7-
RPMS/
8-
crc
6+
/tmp-embed/
7+
/RPMS/
8+
/crc

0 commit comments

Comments
 (0)