Gitiles
Code Review
Sign In
source.supwisdom.com
/
common
/
bash_it
/
59f7a188a7c855e5f27bb6b11f8d81a2b97c644a
/
.
/
plugins
/
available
/
hg.plugins.bash
blob: f72761b9ef95114aa4033d62f0bee51cc2865f06 [
file
] [
log
] [
blame
]
#!/bin/bash
hg_dirty
()
{
hg status
--
no
-
color
2
>
/
dev
/
null \
|
awk
'$1 == "?" { print "?" } $1 != "?" { print "!" }'
\
|
sort
|
uniq
|
head
-
c1
}
hg_in_repo
()
{
[[
`hg branch 2> /dev/null`
]]
&&
echo
'on '
}
hg_branch
()
{
hg branch
2
>
/
dev
/
null
}