Linux Mint 20.3
Java 11
SVN 1.14
In my java project to ignore some files/dirs I use the next command:
svn propset svn:ignore *.class .
Ignore all class files in my Java project.
Nice. It's work fine. But it ignore only local. I need to commit ignores to remote repo. So after I delete my local project folder and get latest version by this:
svn checkout some_url_here
Then to be ignore all files/dirs that I added by first command.
Is it possible?