From a6ed667b5ca265c8080adf01d39b91f847cd0b09 Mon Sep 17 00:00:00 2001 From: Grant Birchmeier Date: Sun, 6 Oct 2024 19:13:54 -0500 Subject: [PATCH] gitignore vim .swp files and maven wrapper jar --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 536ba01d44..fb838987e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ # ignore maven build directories target/ +# ignore maven wrapper jar that gets built locally +.mvn/wrapper/maven-wrapper.jar # ignore Eclipse configuration files .project .classpath @@ -12,3 +14,5 @@ target/ # ignore NetBeans configuration nb-configuration.xml *.bak +# ignore vim swap files +*.swp