vote up 0 vote down star

Hi

My host does not handle SVN.

What I want is to be able to send through ftp a whole svn revision so I am sure I won't forget to upload a file.

Do you guies know any tool that would help me to do that?

thank you!

Vy

flag

3 Answers

vote up 2 vote down

The simple answer

  1. Do an SVN export on your local machine
  2. Zip it
  3. ftp to server
  4. extract

Can then use ftp software like filezilla to upload / replace new files. Can save time because it will prompt to only update files that have changed.

The fancy answer

  1. Mount your ftp share on your machine as a local resource which is easy on linux / mac (fuse,ftpfs,sshfs), but requires third party software on windows.
  2. Once you're mounted browse to it and use your local svn client to do a checkout onto the remote server. Can be a bit flaky if connection is bad but I've done it before.
  3. As long as it remains mounted you can treat it just like it was on your local machine
  4. On windows you may want to enable TortoiseSVN to show Icon Labels on remote file systems

The ideal scenario

  1. Find a host with ssh access and svn client

  2. Either use ssh port forwarding to tunnel a connection to your svn server, or expose your svn server to the internet. (use putty on windows)

  3. Then just do checkout on host and do updates to keep in sync.

Note

If SFTP is available you should use that because ftp isn't secure

link|flag
1  
Mounting a normal FTP share on Windows does not require third party software. Mounting a SFTP share does though. – Matthew Scharley Oct 14 at 0:27
vote up 0 vote down

The most Subversiony answer would be to say this on the client:

cd root/of/my/project
svn diff > /tmp/x.patch
cmd_to_copy_patch_to_server

Then on the server:

cd base/of/web/site
patch -p0 < wherever/it/is/x.patch

This will work.

That said, what's wrong with rsync? I assume you have ssh access. Rsync works over ssh very nicely, as long as the host has a copy of rsync, too.

If rsync is out, too, I'd probably prefer to just build a script to do this. Very rough idea, totally untested:

#!/bin/sh
svn status | while read line
    file = `echo $line | cut -c8-`
    case `echo $line | cut -f1 -d' '`
        D)
            # delete file on web host
            ;;
        *)
            # file modified somehow, so copy file to host
            ;;
    esac
done

Rsync is far better, though.

link|flag
Swatting a fly with a bazooka. – Soviut Oct 14 at 0:09
I await your awesome flyswatter answer. :) – Warren Young Oct 14 at 0:14
What's wrong with bazookas? – Matthew Scharley Oct 14 at 0:32
vote up 0 vote down

I used SmartFTP and upload the entire folder. It will compare the contents of the files automatically (if you choose) and only upload the newer files, saves time and bandwidth

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.