Git: ftp 不是命令

Git: ftp is not a command

我正在尝试在 Windows 10 上使用 git-ftp。我已经尝试了 this page 上的所有步骤。

建议在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 上创建了一个 pull request

README for git-ftp/git-ftp包括:

Windows and OS X: I am very limited in testing on Windows and OS X. Thanks for helping me out fixing bugs on these platforms.

不过,在 Windows 上,您可以简单地复制 D:\Program Files\Git\bin 中的 git-ftp(您甚至不必在 bash ): %PATH% 中的任何 git-xxx 文件将由 git xxx

执行

如果 git ftp 被识别,首先在常规 CMD 中检查(使用适当的 PATH)。 (假设 D:\Program Files\Git\bin 在你的 %PATH% 中)