Your IP : 172.28.240.42


Current Path : /usr/local/go/src/cmd/go/testdata/vcstest/hg/
Upload File :
Current File : //usr/local/go/src/cmd/go/testdata/vcstest/hg/hello.txt

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")
}