add sha, which-branch to gitconfig. add is_ssh.

This commit is contained in:
2014-04-13 22:47:40 -07:00
parent 56342141da
commit 322f862e76
4 changed files with 18 additions and 4 deletions

View File

@@ -85,3 +85,11 @@ function digga() {
function shell_stats() {
history | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n20
}
function is_ssh() {
p=${1:-$PPID}
read pid name ppid < <(ps -o pid= -o comm= -o ppid= -p $p)
[[ "$name" =~ sshd ]] && { echo "Is SSH : $pid $name"; return 0; }
[ "$ppid" -le 1 ] && { echo "Adam is $pid $name"; return 1; }
is_ssh $ppid
}

View File

@@ -4,7 +4,7 @@ function current_directory() {
}
function git_prompt_info() {
if test -z $(parse_git_branch);
if test -z $(git branch-or-sha);
then
echo ""
else