我正在尝试在 Windows 10 上使用 git-ftp。我已经尝试了此页面上的所有步骤。
它建议将这些命令写在git bash
:
cd /d/"Program Files"/Git
git clone https://github.com/git-ftp/git-ftp git-ftp.git
cd git-ftp.git && chmod +x git-ftp
cp /d/"Program Files"/Git/git-ftp.git/git-ftp /d/"Program Files"/Git/bin/git-ftp
并将项目文件夹中的这些命令写入cmd:
git config git-ftp.url ftp://ftp.yourdomain.com/public_html/whatever_path
git config git-ftp.user ftp_username
git config git-ftp.password ftp_password
git add .
git commit -m "files changes"
git ftp init
但是当我尝试编写这段代码时:
git ftp init
它只是给我这个错误:
git: 'ftp' is not a git command. See 'git --help'.
我不知道我错过了什么。
编辑:
我在 github 上创建了一个拉取请求。