The SVN command submits the contents of a folder and excludes the specified files and folders. How to write the command? For example, there are more than ten folders such as B and C in a folder, and there is also a file a.lock. How to submit a folder with SVN command, but you should exclude the B folder and a.lock file in it, and ask for guidance. cd a
svn add -N .
svn propset svn:ignore 'a.lock' .
svn propset svn:ignore 'b' .
Can SVN commit - M "XXX" be written like this?
cd asvn propset svn:ignore "b" .
Then execute SVN add. -- force, or submit all the contents in folder B to the cache?