How do I ignore the files in the target
folder of Maven?
I want to ignore them so that git
does not see the files.
How do I ignore the files in the target
folder of Maven?
I want to ignore them so that git
does not see the files.
In the .gitignore
file, include the */target/*
syntax.
This causes git to ignore everything within any folder called target
Read the official git documentation for .gitignore
. It describes in detail the patterns that can be used to ignore project files and folders.