Ashish Agarwal
Ashish Agarwal

Reputation: 14925

Subversion - command line update

What would be the subversion command line statement to update to the latest revision of the code in the repository?

I have the code already checked out, but I need to update to the latest code since some of the files have been updated.

Upvotes: 0

Views: 78

Answers (1)

NPE
NPE

Reputation: 500357

The command is

svn update

or

svn up

for short.

See the SVNBook.

Upvotes: 5

Related Questions