> I would compare the mount options used in sshfs when going from
> macfusion and when going from the command line directly. You can find
> the mount options in either case by typing "ps aux" in the terminal
> and finding sshfs there. I'm guessing the difference is follow_symlinks?
> ~ Michael
> On Jul 9, 2008, at 10:19 AM, REBELinBLUE wrote:
> > I have been using Macfuse with sshfs to mount a server that has a
> > checked out SVN working copy on it.
> > This working copy has symlinks it. When using Macfuse and mounting
> > with the command
> > /usr/local/bin/sshfs user@ip:/var/www/svn/bay/ /Volumes/Bay -ocache=no
> > -onolocalcaches -o IdentityFile=/Users/stephen/.ssh/
> > id_rsa,reconnect,volname=Bay
> > this is fine, but when using Macfusion the symlinks show as
> > obstructions in SVN (i.e. SVN doesn't follow them) but are fine in
> > Finder
> > i.e. the when using the above command to mount the shae, the SVN
> > output is like so
> > admin stephen$ svn st
> > A public/404.html
> > but when using Macfusion to mount the share the SVN output is like so
> > admin stephen$ svn st
> > ~ app/models
> > A public/404.html
> > ~ public/.htaccess
> > ~ public/dispatcher.php
> > Those 3 with ~ are all symlinks to files a few directories back (but
> > which are still on the mounted share)
> > Does anyone know how I can resolve this, how I can get Macfusion to
> > behave the same way as the above command. I have put -ocache=no -
> > onolocalcaches in the extra options and have "Follow Symbolic Links"
> > selected.
> > Thanks