Skip to content

Commit

Permalink
gitignore: Add leading / to most entries
Browse files Browse the repository at this point in the history
'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.
  • Loading branch information
cfergeau authored and praveenkumar committed Jan 31, 2023
1 parent 56d017b commit 12b2a36
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
out/
docs/build/
release/
/out/
/docs/build/
/release/
/release-info.json
*.crcbundle
tmp-embed/
RPMS/
crc
/tmp-embed/
/RPMS/
/crc

0 comments on commit 12b2a36

Please sign in to comment.