我正在使用 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 用户和密码正确。我能做些什么来解决这个问题?