使用 Powershell 将 Git 克隆到主目录

使用 Powershell 将 Git 克隆到主目录

cmd.exe我以前在 Win 10 上工作,但最近切换
到了cmd.exePowershell 。

cd %USERPROFILE%\example 

git clone https://github.com/user/example.git %USERPROFILE%\example  

工作正常。由于%USERPROFILE%在 Powershell 中不起作用,因此我改用~

但是,当我在 Powershell 中C:输入命令时cd ~/example,我将进入该文件夹C:\Users\JohnDoe\example(如预期的那样)。

但当我跑步时

git clone https://github.com/user/example.git ~/example

repo 不是被克隆到我的主目录,而是被克隆到C:\~\example

有没有办法~在 Powershell 中使用 git clone 命令?

答案1

这很奇怪。您可以先创建目录,然后使用 Tab 补全: C:\> mkdir ~/example C:\> git clone https://github.com/user/example.git ~/ex<[Tab]> C:\> git clone https://github.com/user/example.git C:\Users\Josh\example

或者使用 $HOME 变量: C:\> git clone https://github.com/user/example.git $HOME/example

相关内容