svn add recursively on windows


/ Published in: DOS Batch
Save to your folder(s)

'svn add' all unversioned files in a working copy to svn repository recursively on windows


Copy this code and paste it in your HTML
  1. for /f "usebackq tokens=2*" %i in (`svn status ^| findstr /r "^\?"`) do svn add "%i %j"

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.