Target subdirectory is associated with the build and so you would not check those in.
try following command from the project root directory
git rm -r target
git commit . -m "Remove target directory"
git push origin master
And update .gitignore to include target subdirectory so that it does not check it in again.
Target subdirectory is associated with the build and so you would not check those in.
try following command from the project root directory
git rm -r target
git commit . -m "Remove target directory"
git push origin master
And update .gitignore to include target subdirectory so that it does not check it in again.