Add comments to the .gitignore file
This commit is contained in:
parent
3bd28fba99
commit
f71325a367
1 changed files with 8 additions and 1 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,11 +1,18 @@
|
||||||
|
# Backup files
|
||||||
*~
|
*~
|
||||||
\#*
|
\#*
|
||||||
.\#*
|
.\#*
|
||||||
|
|
||||||
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
.emacs.d/auto-save-list/
|
|
||||||
|
# Vim
|
||||||
.vim/bundle/*
|
.vim/bundle/*
|
||||||
!.vim/bundle/Vundle.vim
|
!.vim/bundle/Vundle.vim
|
||||||
.vim/.netrwhist
|
.vim/.netrwhist
|
||||||
*.swp
|
*.swp
|
||||||
|
|
||||||
|
# Emacs
|
||||||
|
.emacs.d/auto-save-list/
|
||||||
|
|
Loading…
Reference in a new issue