我已经阅读了一个教程,该教程解释了如何使用bitbucket管道与git ftp一起使用ftp部署到服务器:
https://www.savjee.be/2016/06/Deploying-website-to-ftp-or-amazon-s3-with-BitBucket-Pipelines/
由于我使用mercurial,git ftp不能在我的repo上工作,我希望找到一个与它一样好的git ftp的替代品。即在推送等上传仅更改的文件
.yml:
image: samueldebruyn/debian-git
pipelines:
default:
- step:
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD ftp://YOUR_SERVER_ADDRESS/PATH_TO_WEBSITE/
答案 0 :(得分:0)
Mercurial有一个FTP扩展名:FTPExtension - Mercurial
答案 1 :(得分:0)
这对我有用,部署Web文件夹
genre genre_id
0 [Comedy, Supernatural, Romance] [1, 2, 3]
1 [Comedy, Parody, Romance] [1, 4, 3]
2 [Comedy] [1]
3 [Comedy, Drama, Romance, Fantasy] [1, 5, 3, 6]
4 [Comedy, Drama, Romance] [1, 5, 3]