summaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2021-10-18 10:46:00 +0200
committerGitHub <noreply@github.com>2021-10-18 10:46:00 +0200
commit25d9ce8b9cff2b7daeecb88992d33011783d60d0 (patch)
tree4d4effa10edefbce35bae3b08b5f426a48d30b6b /.gitignore
parentb94b25c5fe504eb9f9f15cfebaa7cb5f9c0af2e6 (diff)
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/`.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore3
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 433d02d7a..01d37241f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,6 @@
-/target
+target/
*.new
.vscode
.vim
.DS_Store
/assets/man/zellij.1
-**/target \ No newline at end of file