refactoring
- replace custom command registration
~/.config/gita/cmds.yml
by~/.config/gita/cmds.json
. If no custom command exists, nothing needs to be done. Otherwise change the content accordingly. For example,
stat:
cmd: git diff --stat
help: show edit statistics
should be replaced by
{
"stat":{
"cmd": "git diff --stat",
"help": "show edit statistics"
}
}