0
我已經使用Git-bash安裝了wp-cli,創建了相關的PATH變量。wp-cli在windows cmd中工作,但不在Gitbash中
我現在可以在Windows CMD中鍵入'wp',它可以工作,但Git-bash無法識別該命令。
我該怎麼做才能使用Git-bash工作,爲什麼它沒有開箱即用?
我已經使用Git-bash安裝了wp-cli,創建了相關的PATH變量。wp-cli在windows cmd中工作,但不在Gitbash中
我現在可以在Windows CMD中鍵入'wp',它可以工作,但Git-bash無法識別該命令。
我該怎麼做才能使用Git-bash工作,爲什麼它沒有開箱即用?
我遇到了同樣的問題。例如,命令「wp cli version」在cmd中工作,但不在cygwin中。
檢查下面的教程:https://deluxeblogtips.com/install-wp-cli-windows/
如果您正在使用的cygwin,您將需要創建另一個WP文件(沒有.BAT)擴展。只需將它命名爲wp,內容如下:
#!/usr/bin/env sh
dir=$(d=${0%[/\\]*}; cd "$d"; pwd)
# See if we are running in Cygwin by checking for cygpath program
if command -v 'cygpath' >/dev/null 2>&1; then
# Cygwin paths start with /cygdrive/ which will break windows PHP,
# so we need to translate the dir path to windows format. However
# we could be using cygwin PHP which does not require this, so we
# test if the path to PHP starts with /cygdrive/ rather than /usr/bin
if [[ $(which php) == /cygdrive/* ]]; then
dir=$(cygpath -m $dir);
fi
fi
dir=$(echo $dir | sed 's/ /\ /g')
"${dir}/wp-cli.phar" "[email protected]"