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"
"code.revolvingcow.com/revolvingcow/go-code/cmd"
)
// Main entry point to the application
func main() {
err := cmd.NewApp().Run()
// If there was an error report and exit
if err != nil {
log.Fatal(err)
}
}
|