Ignore vim swap files
Add vim's .swp files to .gitignore. These files are created by vim whenever you open a file, so if you have a file open while running "git status", the .swp file will show up as untracked, which is kind of annoying.
This commit is contained in:
parent
bb64fb5b8e
commit
212185a2a3
3
.gitignore
vendored
3
.gitignore
vendored
@ -17,6 +17,9 @@ $RECYCLE.BIN/
|
|||||||
# Windows shortcuts
|
# Windows shortcuts
|
||||||
*.lnk
|
*.lnk
|
||||||
|
|
||||||
|
# Vim swap files
|
||||||
|
*.swp
|
||||||
|
|
||||||
# =========================
|
# =========================
|
||||||
# Operating System Files
|
# Operating System Files
|
||||||
# =========================
|
# =========================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user