Version control system wrapper allowing the developer to worry about only having to learn one command set to manage all types of repositories.
Derivative of the Python project http://code.revolvingcow.com/RevolvingCow/pycode
package main
import (
"log"
"os"
"code.revolvingcow.com/revolvingcow/go-code/cmd"
)
// Main entry point to the application
func main() {
err := cmd.NewApp().Run()
if err != nil {
log.Fatal(err)
os.Exit(1)
}
}