在 bitbucket 管道上定义同步目录

Define sync directory on bitbucket pipeline

我正在使用文件夹结构进行本地 vagrant 开发,

-bin
-htdocs
-资源
-流浪汉

这些文件夹在 git
但我只想使用 git ftp push

克隆服务器上的 htdocs 文件夹内容

如何在 bitbucket 管道上定义克隆目录?

通过
上的以下文档 https://www.mankier.com/1/git-ftp#Defaults

需要在git config

中设置syncroot

执行命令之前git ftp <init|push> git 应该像本例中那样配置

$ git config git-ftp.user john
$ git config git-ftp.url ftp.example.com
$ git config git-ftp.password secr3t
$ git config git-ftp.syncroot path/dir

或者使用一行命令

$ git config git-ftp.<(url|user|password|syncroot|cacert)> <value>