linux 提示:显示当前分支?

linux 提示:显示当前分支?

我希望我的命令提示符不显示我的用户名,而是显示我当前所在的 git 分支。换句话说,这就是我想要的:

[master]$ ls
README    INSTAL    whatever.py
[master]$ git checkout other-branch
[other-branch]$ 

有没有办法让提示自定义到这种程度?

答案1

PS1='[`git rev-parse --abbrev-ref HEAD 2> /dev/null`]$ '

这里寻求有关使用的特定 git 命令的帮助。对我来说,关键是要意识到我可以将任意命令插入 PS1 环境变量 :)

相关内容