From c4d9dd6ec7c39942725db7069ac4c7ee0ac6cc1d Mon Sep 17 00:00:00 2001 From: Davor Bonaci Date: Wed, 9 Mar 2016 10:29:28 -0800 Subject: [PATCH] Update .gitignore to skip over files that end with '~' --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 0ba351f6d641..0f4aabd786e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +# Ignore files generated by the Maven build process. target/ # Ignore IntelliJ files. @@ -14,3 +15,7 @@ target/ # The build process generates the dependency-reduced POM, but it shouldn't be # committed. dependency-reduced-pom.xml + +# Ignore files that end with '~', since they are most likely auto-save files +# produced by a text editor. +*~