]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #52615 - davidtwco:add-to-gitignore, r=nikomatsakis,Mark-Simulacrum
authorkennytm <kennytm@gmail.com>
Sun, 22 Jul 2018 14:10:21 +0000 (22:10 +0800)
committerkennytm <kennytm@gmail.com>
Sun, 22 Jul 2018 17:00:10 +0000 (01:00 +0800)
commit7019ccee93c6d2dfbab572ce5203203c7e52c316
tree368ca7cf86555554203ebd31b4247f1f61ae8a97
parentde3cf0c433b7d47272909bbfb6c9cf98a982b4b7
parentc645ecd0a6d2d0996f0a9ae771ad580300a96786
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.