Mac OS Catalina: PS1 当我改变分支或目录时没有更新
Mac OS Catalina: PS1 not updating when I change branch or directory
我尝试将 bash_profile 中的 PS1
设置为,
.bash_profile
#!/bin/bash
# .....
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ ()/'
}
parse_pwd() {
basename $PWD
}
PS1=''$(parse_pwd)''$(parse_git_branch)' $ '
得到了预期的输出:<project-directory-name> (git-branch-name) $
问题:
当我更改分支或更改项目时,PS1
详细信息不会更新(即分支名称和项目目录名称都不会更新)。我必须手动 运行 source ~/.bash_profile
才能在终端中看到这些变化。
我用谷歌搜索并尝试了一些建议,例如,
不确定,但这与我的 bash 有关吗?我目前正在使用 zsh,
$ echo $SHELL
/bin/zsh
如果你想更改 Zsh 的提示:
PROMPT="⚡️%{$fg[red]%} ☣︎☯︎⚰︎☤⚚♱♚☨☥☥☨♚♱⚚☤⚰︎☯︎☣︎ %{$fg[red]%}⚡%{$fg[green]%}%T⚡️%{$fg[green]%}%{$fg[yellow]%}%d%{$fg[yellow]%} ⚡️"
^这里只是举例说明bash和zsh在设置提示时的区别^
对于你的情况,检查这个 link:
https://www.themoderncoder.com/add-git-branch-information-to-your-zsh-prompt/
或更改为 bash 使用:
chsh -s /bin/sh
我尝试将 bash_profile 中的 PS1
设置为,
.bash_profile
#!/bin/bash
# .....
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ ()/'
}
parse_pwd() {
basename $PWD
}
PS1=''$(parse_pwd)''$(parse_git_branch)' $ '
得到了预期的输出:<project-directory-name> (git-branch-name) $
问题:
当我更改分支或更改项目时,PS1
详细信息不会更新(即分支名称和项目目录名称都不会更新)。我必须手动 运行 source ~/.bash_profile
才能在终端中看到这些变化。
我用谷歌搜索并尝试了一些建议,例如,
不确定,但这与我的 bash 有关吗?我目前正在使用 zsh,
$ echo $SHELL
/bin/zsh
如果你想更改 Zsh 的提示:
PROMPT="⚡️%{$fg[red]%} ☣︎☯︎⚰︎☤⚚♱♚☨☥☥☨♚♱⚚☤⚰︎☯︎☣︎ %{$fg[red]%}⚡%{$fg[green]%}%T⚡️%{$fg[green]%}%{$fg[yellow]%}%d%{$fg[yellow]%} ⚡️"
^这里只是举例说明bash和zsh在设置提示时的区别^
对于你的情况,检查这个 link:
https://www.themoderncoder.com/add-git-branch-information-to-your-zsh-prompt/
或更改为 bash 使用:
chsh -s /bin/sh