lamcro
lamcro

Reputation: 6281

How to download file revision [without checking out directory]

TortoiseSVN (on Windows) has the option to download a file revision to your computer without having to checkout/update a working copy. You just select the revision you want to download and where. See "Save Revision to..." option from the "Show Log" window.

I need to do this, but using command-line Subversion, on Solaris.

I found that using svn cat -r ### path/file.sh > /new_path/file.sh seems to work, but I don't know if it is the "proper" way.

Upvotes: 0

Views: 70

Answers (1)

manojlds
manojlds

Reputation: 301347

svn export is what you want. And applicable for both files and directories:

svn export -r 100 url/path/file.sh /new_path/file.sh

Upvotes: 2

Related Questions