讓你的Command Line知道你在哪一個branch上

| Comments

開始學會用Git了,因為Git的功能還蠻強大的,最近在做Branch的時候,有時候會忘了自己在哪一個Branch上,直到有人介紹我一篇文章(我的Git偏號設定)。

只要在~/.bash_profile上新增下面幾行

function git_branch {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return;
echo "("${ref#refs/heads/}") ";
}

function git_since_last_commit {
now=`date +%s`;
last_commit=$(git log --pretty=format:%at -1 2> /dev/null) || return;
seconds_since_last_commit=$((now-last_commit));
minutes_since_last_commit=$((seconds_since_last_commit/60));
hours_since_last_commit=$((minutes_since_last_commit/60));
minutes_since_last_commit=$((minutes_since_last_commit%60));

echo "${hours_since_last_commit}h${minutes_since_last_commit}m ";
}

PS1="[\[\033[1;32m\]\w\[\033[0m\]] \[\033[0m\]\[\033[1;36m\]\$(git_branch)\[\033[0;33m\]\$(git_since_last_commit)\[\033[0m\]$ "

之後執行

$ source ~/.bash_profile

這樣就會變漂亮啦…而且又有上次commit到現在已經過了多久。

如果要改顏色的話可以參考 printf 顏色設置

參考網站

我的Git偏號設定 by ihower

printf 顏色設置 by Tech黑手 – 工作雜記

Comments