21

我正在尝试以与Paul Irish相同的方式设置 iTerm 提示

到目前为止,我有以下内容~/.profile

# Add git branch name to prompt
parse_git_branch() {
  git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/*\(.*\)/ on \1/'
}

PS1='\n\[\033[0:35m\]\u\[\033[0;32m\]\w\[033[0m\]$(parse_git_branch)\n\$\[\033[0m\] '

我不知道如何让分支以不同的颜色出现,而不是前面的“on”

除此之外,还有其他功能,例如:

  • 不在 git 分支中时在提示符处显示“o”
  • 在分支中显示“±”
  • 在行尾显示日期

任何帮助,将不胜感激

4

6 回答 6

23

我使用git-aware-prompt

如果我在终端加载时仅在该目录中,我之前的许多解决方案只会显示 git 分支。如果我在非 git 存储库中启动 iTerm,那么当我cd使用 git 存储库进入目录时它就无法工作。

这个 github 项目为我解决了这个问题。

于 2013-04-01T19:34:56.397 回答
9

与其使用陈旧的终端代码,不如使用tput它使代码更易于阅读且更难搞砸:

BLACK=$(tput setaf 0)
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
YELLOW=$(tput setaf 3)
LIME_YELLOW=$(tput setaf 190)
POWDER_BLUE=$(tput setaf 153)
BLUE=$(tput setaf 4)
MAGENTA=$(tput setaf 5)
CYAN=$(tput setaf 6)
WHITE=$(tput setaf 7)
BRIGHT=$(tput bold)
NORMAL=$(tput sgr0)
BLINK=$(tput blink)
REVERSE=$(tput smso)
UNDERLINE=$(tput smul)

# Set Titlebar and Prompt
TITLEBAR='\e]0;\h: ${PWD/$HOME/~}\a'
PS1="${TITLEBAR}${WHITE}[${POWDER_BLUE}\u@\h${WHITE}]${NORMAL}$ "

设置标题栏是可选的。请务必${NORMAL}在最后使用以关闭颜色变化。

于 2011-03-31T19:39:40.157 回答
8

我刚刚写了一篇关于如何做这一切的帖子。我已经涵盖了所有基础知识,但不得不猜测一些事情,例如保罗如何使用符号等。如果你想阅读它,请查看http://digitalformula.net/articles/pimp-my-prompt-like -保罗爱尔兰人

还有一篇关于 digitalformula.net 的文章显示了其他几个提示示例 - 请参阅http://digitalformula.net/articles/a-couple-more-bash-prompt-examples

编辑:代码部分如下:

PATH=$PATH:~/Data/Scripts:~/Data/Utils/rar:~/_Applications:~/_Applications/lynx

# alias to quickly show if any Handbrake processes are running
alias hb='sudo ps -aef | grep HandBrakeCLI'

# alias for quick DNS cache flushing
alias fc='sudo dscacheutil -flushcache'

# enable the git bash completion commands
source ~/.git-completion

# enable git unstaged indicators - set to a non-empty value
GIT_PS1_SHOWDIRTYSTATE="."

# enable showing of untracked files - set to a non-empty value
GIT_PS1_SHOWUNTRACKEDFILES="."

# enable stash checking - set to a non-empty value
GIT_PS1_SHOWSTASHSTATE="."

# enable showing of HEAD vs its upstream
GIT_PS1_SHOWUPSTREAM="auto"

BLACK=$(tput setaf 0)
RED=$(tput setaf 1)
GREEN=$(tput setaf 2)
YELLOW=$(tput setaf 3)
LIME_YELLOW=$(tput setaf 190)
POWDER_BLUE=$(tput setaf 153)
BLUE=$(tput setaf 4)
MAGENTA=$(tput setaf 5)
CYAN=$(tput setaf 6)
WHITE=$(tput setaf 7)
BRIGHT=$(tput bold)
NORMAL=$(tput sgr0)
BLINK=$(tput blink)
REVERSE=$(tput smso)
UNDERLINE=$(tput smul)

# set the prompt to show current working directory and git branch name, if it exists

# this prompt is a green username, black @ symbol, cyan host, magenta current working directory and white git branch (only shows if you're in a git branch)
# unstaged and untracked symbols are shown, too (see above)
# this prompt uses the short colour codes defined above
# PS1='${GREEN}\u${BLACK}@${CYAN}\h:${MAGENTA}\w${WHITE}`__git_ps1 " (%s)"`\$ '

# this is a cyan username, @ symbol and host, magenta current working directory and white git branch
# it uses the shorter , but visibly more complex, codes for text colours (shorter because the colour code definitions aren't needed)
# PS1='\[\033[0;36m\]\u@\h\[\033[01m\]:\[\033[0;35m\]\w\[\033[00m\]\[\033[1;30m\]\[\033[0;37m\]`__git_ps1 " (%s)"`\[\033[00m\]\[\033[0;37m\]\$ '

# return the prompt prefix for the second line
function set_prefix {
    BRANCH=`__git_ps1`
    if [[ -z $BRANCH ]]; then
        echo "${NORMAL}o"
    else
        echo "${UNDERLINE}+"
    fi
}

# and here's one similar to Paul Irish's famous prompt ... not sure if this is the way he does it, but it works  :)
# \033[s = save cursor position
# \033[u = restore cursor position

PS1='${MAGENTA}\u${WHITE} in ${GREEN}\w${WHITE}${MAGENTA}`__git_ps1 " on %s"`${WHITE}\r\n`set_prefix`${NORMAL}${CYAN}\033[s\033[60C (`date "+%a, %b %d"`)\033[u${WHITE} '
于 2011-05-08T12:37:47.887 回答
7

将此添加到您的~/.bashrc~/.profile

PS1="\u@\h:\w on\e[0;35m$(__git_ps1)\e[m\$ "

在哪里,

$(__git_ps1)用于打印分支名称

\e定义配色方案的开始

[0;35m代表紫色

\e[m定义方案的结束

另外,我修复了您当前的提示:

PS1='\n\[\033[0;35m\]\u\[\033[0;32m\]\w\[\033[0m\]$(__git_ps1)\n\$\[\033[0m\] '
于 2011-03-31T19:39:24.783 回答
5

如上所述,我也使用git-aware-prompt

运行这个快速安装:

mkdir ~/.bash
cd ~/.bash
git clone git://github.com/jimeh/git-aware-prompt.git

将此添加到您的顶部~/.bash_profile

export GITAWAREPROMPT=~/.bash/git-aware-prompt
source "${GITAWAREPROMPT}/main.sh"

在同一个文件~/.bash_profile中,这里是我使用的提示:

export PS1="\n\[$txtpur\]\u\[$bldwht\]@\h\[$bldgrn\]:\[$bldblu\] \w \[$txtcyn\]\$git_branch\[$txtred\]\$git_dirty\[$txtrst\]\$ \[$txtwht\] "

export SUDO_PS1="\[$bakred\]\u@\h\[$txtrst\] \w\$ "

你可以根据自己的喜好改变颜色

以下是 PS1 中一些符号的含义:
\u - 用户名
@ - 酷符号
\h - 主机名
: - 用于分隔事物的酷符号
\w - 完整路径,使用 \W 表示短路径
\git_branch - 当前分支的名称
\ git_dirty - 当分支发生变化时显示 *
$ - 很酷的符号来表示,输入命令

于 2017-03-21T18:12:39.773 回答
0

一个功能非常丰富和广泛的解决方案(不仅适用于 iterm shell,也适用于 Vim 和其他)是Powerline

于 2015-01-28T08:02:41.617 回答