Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Svn and disconnected edits

I am using svn (VisualSVN Server in specific with VisualSVN and thus TortoiseSVN). Is it possible to work in an offline scenario? E.g. code is checked in, and then modify the solution without checking out the relevant file?

What (if anything) will go wrong?

like image 747
GurdeepS Avatar asked Jan 22 '26 18:01

GurdeepS


1 Answers

You can work offline with local repository through file://. First you need to create local repo, sync with remote, then switch working dir to the local repo, after some work you can sync them back with remote and switch working dir back to remote. This is described here.

like image 90
pmod Avatar answered Jan 26 '26 14:01

pmod