我的Bitbucket管道中有以下几行
image: samueldebruyn/debian-git
pipelines:
custom: # Pipelines that are triggered manually via the Bitbucket GUI
init: # -- First time init
- step:
caches:
- composer
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp init -u "$FTP_USERNAME" -p "$FTP_PASSWORD" ftp://$FTP_HOST
deploy-all: # -- Deploys all files from the selected commit
- step:
caches:
- composer
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push -u "$FTP_USERNAME" -p "$FTP_PASSWORD" ftp://$FTP_HOST --all
由于某种原因,该管道运行时出现错误。
这是我遇到的错误。
+ git ftp push -u "$FTP_USERNAME" -p "$FTP_PASSWORD" ftp://$FTP_HOST --force
fatal: Could not get last commit. Network down? Wrong URL? Use 'git ftp init' for the initial push., exiting...
有人可以帮我做错什么吗?
答案 0 :(得分:0)
由于某些原因,有人从服务器中删除了.git-ftp.log文件。
所以,我再次重新初始化git-ftp.log文件。
步骤: