You have included some IDE files in the repository. Use the .gitignore file to depict which files you want to exclude from tracking and committing.
Please exclude non-Maven files in your commits (i.e., .project, .classpath, .settings, .DS_Store, .idea, *.iml are created by IDEs and should not be tracked and added to the repository). Also, exclude the target directory and all its contents.
In order to do so, check how to use a .gitignore file in your repo. The .gitignore file should be placed at the root directory of your repo.
If you have files that you want to remove only from the remote repository check the following guide.
You have included some IDE files in the repository. Use the
.gitignore
file to depict which files you want to exclude from tracking and committing.Please exclude non-Maven files in your commits (i.e.,
.project
,.classpath
,.settings
,.DS_Store
,.idea
,*.iml
are created by IDEs and should not be tracked and added to the repository). Also, exclude thetarget
directory and all its contents.In order to do so, check how to use a .gitignore file in your repo. The
.gitignore
file should be placed at the root directory of your repo.If you have files that you want to remove only from the remote repository check the following guide.