约 89 字 预计阅读 1 分钟
git-ftp的使用
git-ftp有什么用?
- git-ftp 能够方便的帮助我们将自己管理的git项目相关代码或资源提交到自己的ftp服务器上
git-ftp命令
1
2
|
git ftp init
git ftp push
|
安装
ubuntu安装
1
|
sudo apt-get install git-ftp
|
mac 安装
- mac安装过程中相关依赖可能会报错,我安装的时候遇到了报错问题,这里记录一下:
1
|
Error: No such file or directory @ rb_sysopen - /Users/zp/Library/Caches/Homebrew/downloads/8687c3e085e812f09d11aeca541ef9cdefbc8f971d9dd3c407c8b18bb3954957--libnghttp2-1.47.0.monterey.bottle.tar.gz
|
1
2
3
4
5
6
|
brew install libnghttp2
brew install openldap
brew install brotli
brew install zstd
brew install curl
brew install git-ftp
|
配置
1
2
3
4
5
6
|
[git-ftp]
url = your-ftp-url
user = your-ftp-user
password = your_ftp_url
syncroot = your-local-upload-fullpath
remote-root= your-ftp-upload-path(eg:htdocs)
|
参考