3

我正在使用 resmo 的 git-ftp。 https://github.com/resmo/git-ftp。当我像这样运行第一个 init 命令(以及带有 push 的 olso)时

git ftp init -vv -u xxxxxxx@aruba.it -p - ftp.mydomain.com

有一个致命的问题

There are 1 files to sync:
[1 of 1] Buffered for upload 'index.php'.
Uploading ...
fatal: Could not upload file: '.git-ftp.log'., exiting...
fatal: Could not upload., exiting...

完整的共鸣在这里http://jsfiddle.net/ehijon/PHwpw/

确保我在“.git”本地文件夹中设置了配置文件:

[git-ftp]
user = xxxxxxx@aruba.it
url = ftp://ftp.mydomain.com
password = xxmypassxx
deployedsha1file = public/.git-ftp.log

在我使用 777 权限在远程设置“公共”文件夹但在本地我没有这个文件(.git-ftp.log)之后......我该怎么做才能创建它?

我试图在远程手动创建它,只是为了知道我是否有权限并且我可以。

ftp 用户和密码正确。我能做些什么来解决这个问题?

4

1 回答 1

2

好的,经过大量测试,我发现了愚蠢的问题。Aruba.it(意大利主机)在根目录中创建一个子目录,如下所示:

~/www.mydomain.com/public/...

所以只需在 url 参数中设置 ftp 之后的文件夹:

url = ftp://ftp.mydomain.com/www.mydomain.com/public

...我希望这可以帮助某人

于 2013-01-07T19:07:28.490 回答