我正在使用文件夹结构进行本地无业游民开发,
-bin
-htdocs
-resources
-vagrant
这些文件夹在 git 上,
但我只想克隆服务器上的htdocs文件夹内容git ftp push
如何在bitbucket 管道上定义克隆目录?
我正在使用文件夹结构进行本地无业游民开发,
-bin
-htdocs
-resources
-vagrant
这些文件夹在 git 上,
但我只想克隆服务器上的htdocs文件夹内容git ftp push
如何在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>