Is there a simple way to accept the working copy “as is” in Subversion? I would like to have the “unknown” files denoted by ? to be added, missing files to be deleted and changed files commited.
Is there a simple way to accept the working copy as is in Subversion?
Share
a
svn commitwould commit the modified files, but for:$ svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm %On recent SVN you could just
svn add --force *(it is recursive)