git-ftp 致命:未设置远程主机
git-ftp fatal: Remote host not set
管道运行后出现此错误:
Preparing to unpack .../git-ftp_1.3.1-1_all.deb ...
Unpacking git-ftp (1.3.1-1) ...
Setting up libcurl3:amd64 (7.52.1-5+deb9u6) ...
Processing triggers for libc-bin (2.24-11+deb9u3) ...
Setting up curl (7.52.1-5+deb9u6) ...
Setting up git-ftp (1.3.1-1) ...
$ git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD sftp://$FTP_HOST
fatal: Remote host not set.
ERROR: Job failed: exit code 1
这是我的 .yml 配置:
image: samueldebruyn/debian-git
stage_deploy:
only:
- develop
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD sftp://$FTP_HOST
一个月前它运行良好。变量的值是正确的..
有什么想法吗?
我终于解决了这个问题,按下 "Clear Runner Caches" 按钮并再次 运行 它。
在创建 git ftp push
之前,您必须初始化 git ftp
,因此添加行:
- git ftp init --user $FTP_USERNAME --passwd $FTP_PASSWORD ftp://$FTP_HOST
note: this only work for the first time
或者,如果你想在每次提交时执行此操作,请在 git ftp push
之前添加行:
- git reset --hard
管道运行后出现此错误:
Preparing to unpack .../git-ftp_1.3.1-1_all.deb ...
Unpacking git-ftp (1.3.1-1) ...
Setting up libcurl3:amd64 (7.52.1-5+deb9u6) ...
Processing triggers for libc-bin (2.24-11+deb9u3) ...
Setting up curl (7.52.1-5+deb9u6) ...
Setting up git-ftp (1.3.1-1) ...
$ git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD sftp://$FTP_HOST
fatal: Remote host not set.
ERROR: Job failed: exit code 1
这是我的 .yml 配置:
image: samueldebruyn/debian-git
stage_deploy:
only:
- develop
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD sftp://$FTP_HOST
一个月前它运行良好。变量的值是正确的..
有什么想法吗?
我终于解决了这个问题,按下 "Clear Runner Caches" 按钮并再次 运行 它。
在创建 git ftp push
之前,您必须初始化 git ftp
,因此添加行:
- git ftp init --user $FTP_USERNAME --passwd $FTP_PASSWORD ftp://$FTP_HOST
note: this only work for the first time
或者,如果你想在每次提交时执行此操作,请在 git ftp push
之前添加行:
- git reset --hard