在Bash命令提示符上添加git分支

我尝试在bash提示符上添加我目前正在工作的git分支(签出),但没有成功。(同时保持我的当前路径显示活动目录/文件完好无损) 我有一个。bashrc文件在我的家,但我也看到很多人提到。profile文件…< / p >

156844 次浏览

1-如果你没有bash-completion…: sudo apt-get install bash-completion

2-编辑你的. bashrc文件并检查(或添加):

if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
< p > 3 -…export PS1='$(__git_ps1) \w\$ '
(__git_ps1将显示你的git分支)

4- do source .bashrc

编辑:

进一步阅读:不要白费力气

git 1.9.3或更高版本:使用__git_ps1

Git提供了一个名为git-prompt.sh的shell脚本,其中包含一个函数__git_ps1

打印文本添加到bash PS1提示符(包括分支名称)

它最基本的用法是:

$ __git_ps1
(master)

它还接受一个可选的格式字符串:

$ __git_ps1 'git:[%s]'
git:[master]

如何得到它

首先,将文件复制到某个地方(例如~/.git-prompt.sh)。

选项1:使用文件系统上现有的副本。示例(Mac OS X 10.15):

$ find / -name 'git-prompt.sh' -type f -print -quit 2>/dev/null
/Library/Developer/CommandLineTools/usr/share/git-core/git-prompt.sh

选项2:提取脚本从GitHub

接下来,将以下行添加到.bashrc/.zshrc中:

source ~/.git-prompt.sh

最后,将你的PS1改为调用__git_ps1作为命令替换:

Bash:

PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '

Zsh:

setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '

git & lt;1.9.3

但请注意,只有git 1.9.3(2014年5月)或晚允许你安全显示该分支名称(!)

参见提交8976500 by 理查德·汉森(richardhansen):

bash和zsh都将PS1的值赋给参数扩展命令替换和算术展开。

而不是在PS1中包含原始的,未转义的分支名称,当在two- or中运行时 三个参数模式,构造PS1来引用一个保存分支名称的变量

因为shell不会递归地展开,这就避免了通过专门制作的分支名称来执行任意代码,例如

'$(IFS=_;cmd=sudo_rm_-rf_/;$cmd)'.

哪个狡猾的人会给分支起这样的名字?,) (在xkcd的妈妈身边)

更多的例子

still_dreaming_1报告在评论中:

如果你想要一个带有xterm(在我的.bashrc中)的颜色提示,这似乎工作得很好:

PS1='\[\e]0;\u@\h: \w\a\]\n${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\03‌​3[01;34m\]\w\[\033[00m\]$(__git_ps1)\$ '

所有的东西都是不同的颜色,包括树枝。

在Linux Mint 17.3肉桂64位:

PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[01;34m\] \w\[\033[00m\]$(__git_ps1) \$ '

正如的评论中的我说的所指出的

Ubuntu

修改你的bashrc中的PS1赋值,

PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\033[0;32m$(__git_ps1 " (%s)")\033[0m\$ '


# ---AND---


PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(__git_ps1 " (%s)")\$ '

下面是我如何配置提示符来显示Git状态:

获取git-prompt脚本:

curl -o ~/.git-prompt.sh https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh

并自定义提示符,在.bashrc文件中添加以下代码:

# Load Git functions
source ~/.git-prompt.sh


# Syntactic sugar for ANSI escape sequences
txtblk='\e[0;30m' # Black - Regular
txtred='\e[0;31m' # Red
txtgrn='\e[0;32m' # Green
txtylw='\e[0;33m' # Yellow
txtblu='\e[0;34m' # Blue
txtpur='\e[0;35m' # Purple
txtcyn='\e[0;36m' # Cyan
txtwht='\e[0;37m' # White
bldblk='\e[1;30m' # Black - Bold
bldred='\e[1;31m' # Red
bldgrn='\e[1;32m' # Green
bldylw='\e[1;33m' # Yellow
bldblu='\e[1;34m' # Blue
bldpur='\e[1;35m' # Purple
bldcyn='\e[1;36m' # Cyan
bldwht='\e[1;37m' # White
unkblk='\e[4;30m' # Black - Underline
undred='\e[4;31m' # Red
undgrn='\e[4;32m' # Green
undylw='\e[4;33m' # Yellow
undblu='\e[4;34m' # Blue
undpur='\e[4;35m' # Purple
undcyn='\e[4;36m' # Cyan
undwht='\e[4;37m' # White
bakblk='\e[40m'   # Black - Background
bakred='\e[41m'   # Red
badgrn='\e[42m'   # Green
bakylw='\e[43m'   # Yellow
bakblu='\e[44m'   # Blue
bakpur='\e[45m'   # Purple
bakcyn='\e[46m'   # Cyan
bakwht='\e[47m'   # White
txtrst='\e[0m'    # Text Reset


# Prompt variables
PROMPT_BEFORE="$txtcyn\u@\h $txtwht\w$txtrst"
PROMPT_AFTER="\\n\\\$ "


# Prompt command
PROMPT_COMMAND='__git_ps1 "$PROMPT_BEFORE" "$PROMPT_AFTER"'


# Git prompt features (read ~/.git-prompt.sh for reference)
export GIT_PS1_SHOWDIRTYSTATE="true"
export GIT_PS1_SHOWSTASHSTATE="true"
export GIT_PS1_SHOWUNTRACKEDFILES="true"
export GIT_PS1_SHOWUPSTREAM="auto"
export GIT_PS1_SHOWCOLORHINTS="true"

如果你想了解更多,你可以在这里得到所有的点文件:https://github.com/jamming/dotfiles

我已经尝试了一个小的python脚本,在bin文件夹.... “gitprompt”文件< / p >

#!/usr/bin/env python
import subprocess, os
s = os.path.join(os.getcwd(), '.git')
def cut(cmd):
ret=''
half=0
record = False
for c in cmd:
if c == "\n":
if not (record):
pass
else:
break
if (record) and c!="\n":
ret = ret + c
if c=='*':
half=0.5
if c==' ':
if half == 0.5:
half = 1
if half == 1:
record = True
return ret
if (os.path.isdir(s)):
out = subprocess.check_output("git branch",shell=True)
print cut(out)
else:
print "-"

让它可执行之类的

然后相应地调整bash提示符,如下:

\u:\w--[$(gitprompt)] \$

对于mac,这非常好:http://martinfitzpatrick.name/article/add-git-branch-name-to-terminal-prompt-mac/:

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


export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

请按照以下步骤操作:(Linux)

编辑文件~/.bashrc,在其末尾输入以下行(在Mac的情况下,文件将是~/.bash_profile)

# Git branch in prompt.
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

现在,启动新的终端窗口,并尝试进入任何git-repo。将显示当前分支,并显示提示符。

4更多信息- MAC/Linux . sh 4更多信息

如果你使用鱼壳,它非常直接。 Fish是一个互动的贝壳,里面有很多好吃的东西。你可以使用apt-get来安装它

sudo apt-get install fish

然后,您可以使用

> fish_config
Web config started at 'http://localhost:8001/'. Hit enter to stop.
Created new window in existing browser session.

现在转到http://localhost:8001/ 打开提示选项卡,选择经典的+ git选项

enter image description here

现在点击使用提示按钮,你就设置好了。

parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1='\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]$(parse_git_branch)\n\$ '

按照以下步骤在ubuntu终端中显示你的GIT repo分支的名称:

步骤1:打开终端并使用以下命令编辑.bashrc。

vi . bashrc

步骤2:在.bashrc文件的末尾添加以下一行:

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

export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

步骤3:源。bashrc在根(主)目录下,这样做:

/ rootfolder: ~ source .bashrc美元

目的:重新启动并打开终端并检查cmd。导航到GIt回购目录路径,就完成了。:)

vim ~/.bash


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


export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $"

要反映最新的更改,请运行以下命令

source ~/.bashrc

输出:

chandrakant@NDL41104 ~/Chandrakant/CodeBase/LaravelApp (development) $
root:~/project#  -> root:~/project(dev)#

将以下代码添加到~/.bashrc的末尾

force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt

下面是我使用的一个简单的干净版本:链接

enter image description here

首先,在主目录中打开Bash概要文件。最简单的打开&使用默认编辑器编辑你的bash_profile

例如,我使用VS Code使用以下命令打开它:Code .bash_profile。

然后只需将以下代码粘贴到您的Bash。

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


export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "

这个函数

parse_git_branch ()

将获取分支名称&然后通过PS1你可以在你的终端上显示它。

在这里,

\u =用户名

@ =静态文本

\h =计算机名

\w =当前目录

$ =静态文本

您可以更改或删除这些变量以进行更多的自定义。


如果您在终端中第一次使用Git,或者在配置后立即使用,有时可能看不到分支名称。

如果你遇到这个问题,不要担心。在这种情况下,只需创建一个示例存储库,并在进行一些更改后提交。当commit命令执行一次时,终端将从中找到git分支。


截图:Git Branch in Terminal . b0

我想要一个干净的解决方案,附加到现有的提示,而不是取代它。与其他解决方案一样,将此添加到.bashrc的底部

# function
parse_git_branch() {
if [ -n "$(git rev-parse --git-dir 2> /dev/null)" ]; then
echo ">> $(git rev-parse --abbrev-ref HEAD) >>"
fi
}


# environment customization
export PS1="\$(parse_git_branch)\n$PS1"

此设置产生如下提示符

>> branchname >>
user@host:~/current/path$

此外,我喜欢给提示符添加一些颜色,这样它就会更好地突出

export PS1="\e[0;36m\$(parse_git_branch)\e[0m\n$PS1"

是什么导致分支名称出现在CYAN中

check this repo: https://github.com/magicmonty/bash-git-prompt
这个提示符是“zsh的信息性git提示符”

的移植

通过Git克隆 克隆这个存储库到你的主目录

git clone https://github.com/magicmonty/bash-git-prompt.git ~/.bash-git-prompt --depth=1

添加到~/.bashrc:

if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then
GIT_PROMPT_ONLY_IN_REPO=1
source $HOME/.bash-git-prompt/gitprompt.sh
fi