如何使git bash目录字符串格式与cmd相同?

时间:2018-01-14 22:59:24

标签: bash git cmd

例如,当我在桌面上打开git bash时,会显示:

John@DESKTOP-PLOS3KB MINGW64 ~/Desktop

$ (heres where I enter my command)

cmd显示:

C:\Users\John\Desktop> (heres where I enter my command)

我想要它,以便bashdirectory header显示与cmd相同的格式。这可能吗?我不想要username@computer-name MINGW64...。如何更改它以显示cmd的作用?

我正在运行Windows机器

谢谢

1 个答案:

答案 0 :(得分:1)

您的提示是使用PS1变量控制的。您可以将其设置为:

PS1='${PWD}> '

让它打印完整的当前工作目录,而不是默认提示中的缩写。与

比较
PS1='\w> '

$HOME缩写为~并将其修剪为$PROMPT_DIRTRIM

中设置的最大长度