I believe git ftp support is a somewhat recent addition, but the git push docs do clearly state that "Git natively supports ssh, git, http, https, ftp, ftps, and rsync protocols." (emphasis added)

However, others have asked what to do if git fails to push to ftp server, and I am having exactly the same problem.

So -- can anyone definitively state whether or not "git push" works with the ftp protocol?

If yes ... then can anyone answer that other question? :-)

If no ... is this in the works, or should I be looking at git-ftp?

I'm using git 1.7.3.1 under Windows.

Many thanks for any info or advice! (BTW, I had this question all nicely hyperlinked, but as a lowly 1-rank I only get one link, so had to remove the others ...)

link|improve this question
feedback

3 Answers

According to this SO answer there is git ftp that might do what you want.

link|improve this answer
Yes, as mentioned in my question :-). – yoyo Feb 17 '11 at 5:18
feedback

In your other question, you seem to be using user@host in your FTP URL.

The docs don't mention user@ as being supported.

link|improve this answer
That's someone else's question, it just happens to describe precisely my problem. You are correct that the docs don't indicate "user@host" syntax for the ftp protocol, thanks for pointing that out. It does appear to work though -- at least, it causes a password prompt to appear. Without the user specification I don't get a password prompt, then the push immediately fails. – yoyo Jan 12 '11 at 7:19
feedback

I don't know if this will work or not, but one thing to look at is .netrc support.

I know on windows, some people here put their HTTP login credentials in a netrc file so they don't have to specify it on the git command. Perhaps FTP can work similarly?

I'm on OSX, and that file sits in my home directory. I don't know where it goes on windows.

link|improve this answer
Credentials don't seem to be the problem, thanks though. – yoyo Feb 17 '11 at 5:18
feedback

Your Answer

 
or
required, but never shown

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