simplify .gitignore (#783)
`/target` is useless when there's already `**/target`. And `**/target` should be written just `target`. And to be more precise, what's really wanted here is to match the "target" *directory* everywhere so the best rule is `target/`.
This commit is contained in:
parent
b94b25c5fe
commit
25d9ce8b9c
1 changed files with 1 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,7 +1,6 @@
|
||||||
/target
|
target/
|
||||||
*.new
|
*.new
|
||||||
.vscode
|
.vscode
|
||||||
.vim
|
.vim
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/assets/man/zellij.1
|
/assets/man/zellij.1
|
||||||
**/target
|
|
||||||
Loading…
Add table
Reference in a new issue