我正在尝试在git version 2.17.0.windows.1
我做了以下事情:
cd /c/"Program Files"/Git
git clone https://github.com/git-ftp/git-ftp git-ftp.git
cd git-ftp.git && chmod +x git-ftp
cp /c/"Program Files"/Git/git-ftp.git/git-ftp /c/"Program Files"/Git/bin/git-ftp
但是,当以管理员身份重新启动新的git控制台时,我得到以下内容:
$ git ftp
git: 'ftp' is not a git command. See 'git --help'.
The most similar command is
fetch
文件夹cp
的{{3}}也git-ftp
C:\Program Files (x86)\Git\bin
个文件。
有什么建议我做错了吗?
感谢您的回复!
更新 执行后,我找到了执行路径:
$ git --exec-path
C:\Program Files\Git\mingw64/libexec/git-core
我复制了文件:
cp /c/"Program Files"/Git/git-ftp.git/git-ftp /c/"Program Files"/Git/bin/git-ftp
该文件现在位于:
official installation instructions
但是,我仍然遇到git: 'ftp' is not a git command.
的上述错误。
答案 0 :(得分:3)
安装这些说明后,我遇到了同样的问题。
解决方案:我已将文件git-ftp
从c:\Program Files\Git\bin\
复制到文件夹c:\Program Files\Git\mingw64\libexec\git-core\
,命令gif ftp push -s
终于成功了。
谢谢大家以上的提示!迈克