This continues a pattern that was introduced in ffa45b0 and refined
further in later commits. This enables all aliases by default, but can
be disabled by any user if they remove the appropriate
aliases/enabled/*.bash file.
14 lines
241 B
Bash
14 lines
241 B
Bash
#!/bin/bash
|
|
|
|
alias hs='hg status'
|
|
alias hsum='hg summary'
|
|
alias hcm='hg commit -m'
|
|
|
|
function hg-help() {
|
|
echo "Mercurial Alias Help"
|
|
echo
|
|
echo " hs = hg status"
|
|
echo " hsum = hg summary"
|
|
echo " hcm = hg commit -m"
|
|
echo
|
|
} |