Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update local SVN repository via command line

I have a local repository for an SVN hosted online. I checked it out using Versions (Mac OSX). I'd now like to update this repository via command line, but I'm not sure how to link the svn command line to the already checked out repo.

like image 362
kylex Avatar asked Jan 20 '23 17:01

kylex


1 Answers

You don't have to link the command line to your working copy. Any Working Copy created by any SVN client can be operated through command line ( unless the versions are too different or something )

Just cd in to the working copy and do svn up to update your working copy.

like image 58
manojlds Avatar answered Jan 29 '23 06:01

manojlds