linux下git配置文件路径,linux 显示当前所在文件位置 以及git 分支所在

function git-branch-name {

git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3

}

function git-branch-prompt {

local branch=`git-branch-name`

if [ $branch ]; then printf " [%s]" $branch; fi

}

PS1="\u@\h \[\033[0;36m\]\W\[\033[0m\]\[\033[0;32m\]\$(git-branch-prompt)\[\033[0m\] \$ "

linux下git配置文件路径,linux 显示当前所在文件位置 以及git 分支所在_第1张图片

Linux显示检查设置文件中的语法是否正确

Linux显示检查设置文件中的语法是否正确 youhaidong@youhaidong-ThinkPad-Edge-E545:~$ apachectl [conflgtest] 程序"apa ...

linux下查看某个文件位置的方法

linux下查看某个文件位置的方法: 例如,不知道apache的配置文件httpd.conf的位置,可以有两种方法来查看: 1.find / -name httpd.conf2.locate http ...

js调试-定位到函数所在文件位置

原文:http://www.cnblogs.com/52cik/p/js-console-show-source.html 在控制台输入要查找的函数名如v

你可能感兴趣的:(linux下git配置文件路径)