Skip to content

Commit 7019cce

Browse files
committed
Rollup merge of #52615 - davidtwco:add-to-gitignore, r=nikomatsakis,Mark-Simulacrum
Added new lines to .gitignore. There are a handful of files that I often find in my local working directories that I never want to commit that aren't covered in the `.gitignore` file: `/mir_dump`: Default output location from `-Z mir-dump=all` for a specific test, I can't think of a reason why this should ever be commited. `tags*`/`TAGS*`: I use `vim-gutentags` which outputs `tags` and `tags.temp` which I don't want commited. I also collapsed the `TAGS`, `TAGS.vi`, `TAGS.emacs` into `TAGS*`. `Session.vim`: I use `vim-obsession` to save my current session in Vim, it outputs a `Session.vim` file, this also shouldn't be commited.
2 parents de3cf0c + c645ecd commit 7019cce

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,18 @@ __pycache__/
8686
target/
8787
/test/
8888
/tmp/
89+
tags
90+
tags.*
8991
TAGS
90-
TAGS.emacs
91-
TAGS.vi
92+
TAGS.*
9293
\#*
9394
\#*\#
9495
config.mk
9596
config.stamp
9697
keywords.md
9798
lexer.ml
99+
mir_dump
100+
Session.vim
98101
src/etc/dl
99102
tmp.*.rs
100103
version.md

0 commit comments

Comments
 (0)