After installing with sshfs, I cannot make my changes using subversion

local machine: Fedora 13 Subversion: 1.6.9

remote machine:
CentSO 5.3
subversion 1.4.2

I have a project that resides on a remote computer:

remote@x.x.x.x:projects/ssd1

I installed this on my local machine:

sshfs remote@x.x.x.x:projects/ssd1 /home/jbloggs/projects/mnt/ssd1

Everything is mounted normally. Therefore, I open my project using GNU Emacs 23.2.1. When I want to comment on my changes in emacs, I get the following error:

can't move /home/jbloggs/projects/mnt/ssd1/.svn/tmp/entries to /home/jbloggs/mnt/ssd1/.svn/entries: Operation not permitted

Does anyone know how I can solve this problem?

thank you very much for any advice

+3
source share
3 answers

I think the problem is with sshfs, not Subversion. Short answer: try the "rename workaround" option:

 sshfs -o workaround=rename ...

, Linux mv ( SVN). , SFTP (.. sshfs)? . http://www.mail-archive.com/macfuse-devel@googlegroups.com/msg00559.html.

+6

, , , , .

? ?

, , , svn .

+2

Why are you setting the project path from a remote computer? Wouldn't it be easier to check a working copy on the local machine?

+1
source

Source: https://habr.com/ru/post/1749435/


All Articles