Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我什至不能正确地将它变成一个问题,或者即使它是一个问题。由于某些事情(可能是我,可能是更新?)。我的终端现在看起来像
drew@think$ cd drewPlay ~/drewPlay drew@think$ (git::master)
在 ~/path 没有显示之前,(git::master) 也没有。我很好奇我做了什么来实现这一点,并且很可能我需要如何解决这个突出的错误。
在您的.bashrc文件中查找PS1变量 - 我敢打赌它包含__git_ps1帮助程序并以换行符开头\w- 类似于:
.bashrc
PS1
__git_ps1
\w
PS1='\w\n\u@\h\$$(__git_ps1 " (git::%s)") '
... 会产生您所看到的提示。如果是这种情况,您可以通过将其更改为:
PS1='\u@\h:\w\$ '
...但是__git_ps1非常棒:)