Equivalent of "svn update" using command line?
![]()
I'm more familiar with Subversion than I am with RTC at this point. What's the equivalent command to "svn update" using the scm command line tool?
To be specific, with Subversion, if I have a "working copy" and I delete a file (a local delete not a "svn rm") and then I do a "svn update", it will not only update my working copy with any changes that have been made to the server-side repository, but it will also bring back that file that I deleted.
Using scm, if I load a workspace and then locally delete a file in the workspace (without checking it in), what do I do to accomplish the same thing that was done with Subversion above?
My guess is that I'd have to do a "scm status" to see what's missing, then do a "scm undo" on the exact file, and then do a "scm accept". This seems pretty laborious.... Is there a better way?
We depend on the "svn update" functionality on our continuous integration server, not to say that it can't be scripted a different way, but I'd like to try to reproduce the functionality as close as I can.
|