Which SVN command shall I use to to switch revision of checked-out working copy?

Viewed 10

I work in git so not so sure about SVN. I checked out revision 15000 inside a folder c:\svn\code which I suppose has the working copy.

Which SVN command should I use to switch to previous revision 14000 in the same working copy folder c:\svn\code ?

1 Answers

The same command (svn update) with the same option, but with just different value

svn up -r14000

Related