Re: Recover broken local repo by a virus

2016-08-05 Thread Stefan Hett
Hi, On 8/4/2016 8:25 PM, bluePlayer wrote: I was yesterday attacked by Cerber Ransomware, encrypting my files and asking money to decrypt. Well I did not fall for that trick, instead i have my SVN server installed on separate machine which is most of the time turned off. I could create new ford

Recover broken local repo by a virus

2016-08-04 Thread bluePlayer
e SVn menu items. -- View this message in context: http://subversion.1072662.n5.nabble.com/Recover-broken-local-repo-by-a-virus-tp197141.html Sent from the Subversion Users mailing list archive at Nabble.com.

Re: Local Repo

2014-09-25 Thread David Lowe
On 2014 Sep 25, at 8:47 AM, jbl...@icloud.com wrote: > Your command was trying to import 'cashier.cpp' into the repository as the > name 'repos'. Thank you for your thorough explanation. sent from Mountain Lion

Re: Local Repo

2014-09-25 Thread jblist
Hi David, I just noticed that you have four slashes on the beginning of your URL. Only three are needed for file-local URLs. FYI, file-local URLs look like this: file://localhost/path/to/file Since "localhost" is assumed if missing, you can shorten it to this: file:///path/to/f

Re: Local Repo

2014-09-25 Thread jblist
First, I wouldn't run svn as root like you are with 'sudo'. Instead, change the ownership of your repo so that you have write access. Your command was trying to import 'cashier.cpp' into the repository as the name 'repos'. You need to do this instead: svn import -m "initial import" cashier.

Local Repo

2014-09-25 Thread David Lowe
Greetings I'm trying to set up a local repository for my schoolwork. The book doesn't seem to have many examples with this type of setup, so i seem to be stumbling a bit. First off, this part seemed to go okeh: $ sudo svnadmin create /usr/local/svn/repos But then this bit doe