Skip to content

Commit

Permalink
.gitignore: remove editor- and OS-specific files
Browse files Browse the repository at this point in the history
Whenever Vim opens a file, it creates a .<filename>.swp file in the same
directory as the file. Emacs adds *~ backup files. macOS creates
.DS_Store files. Other editors and OS' surely do their own thing. Rather
than add each one's own swap/backup file to this .gitignore, encourage
users to add the corresponding items to their system-wide gitignore
files.

Change-Id: I5535f5d2f1ebe896eef108cfda087dcb4c50f031
Signed-off-by: Matthew DeVore <[email protected]>
  • Loading branch information
matvore committed Apr 1, 2019
1 parent 7d92a52 commit 54bdeaa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/.project
/target
.DS_Store
infer-out
bazel-*
*~

# Do not add editor- and OS-specific files like *~ (Emacs) and .DS_Store
# (macOS). Instead, add them to $XDG_CONFIG_HOME/git/ignore
# (~/.config/git/ignore if $XDG_CONFIG_HOME is not set) or
# $GIT_DIR/info/exclude. See "git help gitignore" for details.

0 comments on commit 54bdeaa

Please sign in to comment.