Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ...)

share|improve this question

3 Answers

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

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

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

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

share|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

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.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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