package main import ( "os" "srcd.works/go-git.v4" . "srcd.works/go-git.v4/_examples" ) func main() { CheckArgs("") path := os.Args[1] r, err := git.PlainOpen(path) CheckIfError(err) Info("git push") err = r.Push(&git.PushOptions{}) CheckIfError(err) }