2020-03-11 18:57:46 +00:00
|
|
|
# aliases
|
2018-10-06 11:59:18 +00:00
|
|
|
alias hga='hg add'
|
2012-01-05 22:39:13 +00:00
|
|
|
alias hgc='hg commit'
|
2020-03-11 18:57:46 +00:00
|
|
|
alias hgca='hg commit --amend'
|
2020-05-11 07:55:20 +00:00
|
|
|
alias hgci='hg commit --interactive'
|
2012-01-05 22:39:13 +00:00
|
|
|
alias hgb='hg branch'
|
2011-06-10 13:38:59 +00:00
|
|
|
alias hgba='hg branches'
|
2013-04-09 10:11:51 +00:00
|
|
|
alias hgbk='hg bookmarks'
|
2011-06-10 13:38:59 +00:00
|
|
|
alias hgco='hg checkout'
|
|
|
|
alias hgd='hg diff'
|
|
|
|
alias hged='hg diffmerge'
|
2020-03-11 18:57:46 +00:00
|
|
|
alias hgp='hg push'
|
|
|
|
alias hgs='hg status'
|
2015-01-16 14:59:52 +00:00
|
|
|
alias hgsl='hg log --limit 20 --template "{node|short} | {date|isodatesec} | {author|person}: {desc|strip|firstline}\n" '
|
2020-03-11 18:57:46 +00:00
|
|
|
alias hgun='hg resolve --list'
|
2011-06-10 13:38:59 +00:00
|
|
|
# pull and update
|
2013-03-11 10:24:12 +00:00
|
|
|
alias hgi='hg incoming'
|
2012-01-05 22:39:13 +00:00
|
|
|
alias hgl='hg pull -u'
|
2013-03-27 06:16:46 +00:00
|
|
|
alias hglr='hg pull --rebase'
|
2013-03-11 10:24:12 +00:00
|
|
|
alias hgo='hg outgoing'
|
2021-10-04 13:55:18 +00:00
|
|
|
alias hglg='hg log --stat -v'
|
|
|
|
alias hglgp='hg log --stat -p -v'
|
2012-10-05 20:27:05 +00:00
|
|
|
|
2021-12-02 10:12:18 +00:00
|
|
|
function hgic() {
|
|
|
|
hg incoming "$@" | grep "changeset" | wc -l
|
|
|
|
}
|
|
|
|
|
|
|
|
function hgoc() {
|
|
|
|
hg outgoing "$@" | grep "changeset" | wc -l
|
|
|
|
}
|
|
|
|
|
|
|
|
# functions
|
|
|
|
function hg_root() {
|
|
|
|
local dir="$PWD"
|
|
|
|
while [[ "$dir" != "/" ]]; do
|
|
|
|
if [[ -d "$dir/.hg" ]]; then
|
|
|
|
echo "$dir"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
dir="${dir:h}"
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2013-04-24 06:33:02 +00:00
|
|
|
function in_hg() {
|
2021-12-02 10:12:18 +00:00
|
|
|
hg_root >/dev/null
|
2013-03-11 10:24:12 +00:00
|
|
|
}
|
2013-04-24 06:33:02 +00:00
|
|
|
|
|
|
|
function hg_get_branch_name() {
|
2021-12-02 10:12:18 +00:00
|
|
|
local dir
|
|
|
|
if ! dir=$(hg_root); then
|
|
|
|
return
|
2013-04-24 06:33:02 +00:00
|
|
|
fi
|
|
|
|
|
2021-12-02 10:12:18 +00:00
|
|
|
if [[ ! -f "$dir/.hg/branch" ]]; then
|
|
|
|
echo default
|
2019-06-16 13:50:11 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2021-12-02 10:12:18 +00:00
|
|
|
echo "$(<"$dir/.hg/branch")"
|
|
|
|
}
|
2019-06-16 13:50:11 +00:00
|
|
|
|
2021-12-02 10:12:18 +00:00
|
|
|
function hg_get_bookmark_name() {
|
|
|
|
local dir
|
|
|
|
if ! dir=$(hg_root); then
|
|
|
|
return
|
2013-04-24 06:33:02 +00:00
|
|
|
fi
|
2019-06-16 13:50:11 +00:00
|
|
|
|
2021-12-02 10:12:18 +00:00
|
|
|
if [[ ! -f "$dir/.hg/bookmarks.current" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$(<"$dir/.hg/bookmarks.current")"
|
2013-04-24 06:33:02 +00:00
|
|
|
}
|
|
|
|
|
2024-11-25 01:17:40 +00:00
|
|
|
ZSH_THEME_HG_PROMPT_IDENTIFY_DEFAULT='{separate(" ",ifeq(branch,"default","",branch),strip(bookmarks % "{bookmark}{ifeq(bookmark,activebookmark,"*")} "),tags)}'
|
|
|
|
|
2021-12-02 10:12:18 +00:00
|
|
|
function hg_prompt_info {
|
2024-11-25 01:17:40 +00:00
|
|
|
if ! hg_root >/dev/null; then
|
2021-12-02 10:12:18 +00:00
|
|
|
return
|
2013-04-24 06:33:02 +00:00
|
|
|
fi
|
|
|
|
|
2024-11-25 01:17:40 +00:00
|
|
|
local pieces dirty
|
|
|
|
if ! pieces="$(hg identify -T'{if(dirty,"x","-")} '"${ZSH_THEME_HG_PROMPT_IDENTIFY:-$ZSH_THEME_HG_PROMPT_IDENTIFY_DEFAULT}")"; then
|
2021-12-02 10:12:18 +00:00
|
|
|
return
|
2021-06-12 14:01:26 +00:00
|
|
|
fi
|
2024-11-25 01:17:40 +00:00
|
|
|
dirty="${pieces%% *}"
|
|
|
|
pieces="${pieces#* }"
|
|
|
|
dirty="${dirty%-}"
|
|
|
|
|
|
|
|
# Check for untracked files unless that is disabled or the repo is already known to be dirty.
|
|
|
|
if [[ x"${DISABLE_UNTRACKED_FILES_DIRTY-}" != xtrue && -z "$dirty" ]]; then
|
|
|
|
dirty="$(hg status -u --template=x 2>/dev/null | head -c1; [[ 0 = ${pipestatus[1]} ]] || echo error)"
|
|
|
|
case "$dirty" in
|
|
|
|
error) return ;;
|
|
|
|
esac
|
2021-12-02 10:12:18 +00:00
|
|
|
fi
|
|
|
|
|
2024-11-25 01:17:40 +00:00
|
|
|
case "$dirty" in
|
|
|
|
?*) dirty="$ZSH_THEME_HG_PROMPT_DIRTY" ;;
|
|
|
|
'') dirty="$ZSH_THEME_HG_PROMPT_CLEAN" ;;
|
|
|
|
esac
|
|
|
|
echo "${ZSH_THEME_HG_PROMPT_PREFIX}${pieces:gs/%/%%}$dirty${ZSH_THEME_HG_PROMPT_SUFFIX}"
|
2021-06-12 14:01:26 +00:00
|
|
|
}
|