| handle hg | |
| hg init | |
| hg add hello.go | |
| hg commit --user 'bwk' --date '2017-09-21T21:14:14-04:00' --message 'hello world' | |
| hg log -r ':' --template '{node|short} {desc|strip|firstline}\n' | |
| cmp stdout .hg-log | |
| -- .hg-log -- | |
| e483a7d9f8c9 hello world | |
| -- hello.go -- | |
| package main | |
| func main() { | |
| println("hello, world") | |
| } |