svn - How do I commit my working copy back to my repository without committing the subfolders in my working copy? -
i have working copy checked out repository. want commit repository don't want subfolders in working copy committed longer. example, working copy file path z:\school\ , don't want z:\school\2011_2012\ committed back. how implement in batch file windows?
either commit specific altered files, or use --depth
argument:
--depth arg : limit operation depth arg ('empty', 'files', 'immediates', or 'infinity')
another option of course adding files in question changelist , commit --changelist
Comments
Post a Comment