Skip to content

Instantly share code, notes, and snippets.

View wjnerdery's full-sized avatar

Will Jaspers wjnerdery

  • The Nerdery
  • Bloomington, MN
View GitHub Profile
@wjnerdery
wjnerdery / scm_info.sh
Created June 22, 2012 16:53 — forked from claussni/gist:894310
Source Control Management Bash Prompt Highlighting
##
## SCM info
##
scm_info() {
local bzr_info=`bzr revno --tree 2> /dev/null`
if [ ${bzr_info} ]; then
if [ "$(bzr st -S)" ]; then
local bzr_color='\033[1;31m'
else
local bzr_color='\033[1;36m'