I would like to know which file svn propset svn:ignore
modifies (equivalent to .gitignore
) so that I can actually commit that file to the repo.
E.g. I am working with Java
and Maven
, which creates a directory named "target", which I am ignoring. svn propset svn:ignore target .
does work but I don't know which settings file is modifies by that command so that I propagate the change to my team.
RELATED: SVN ignore like .gitignore