grim/hgkeeper

ebf8e3bd9e68
Do not allow repositories in a repository

It will be strange to support something like this
$ hg init ssh://hg.host.com/hgkeeper/keys

Reviewed at https://reviews.imfreedom.org/r/2423/
package version
import (
"fmt"
"keep.imfreedom.org/grim/hgkeeper/globals"
)
const Version = "1.1.0"
var Commit = "unknown"
type Command struct{}
func (c *Command) Run(g *globals.Globals) error {
fmt.Printf("hgkeeper %s~%s\n", Version, Commit)
return nil
}