1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package main import ( "fmt" "os" "gopkg.in/src-d/go-git.v4" . "gopkg.in/src-d/go-git.v4/examples" ) func main() { CheckArgs("<repo path>") repoPath := os.Args[1] repo, err := git.NewFilesystemRepository(repoPath) CheckIfError(err) err = repo.Push(&git.PushOptions{}) CheckIfError(err) fmt.Print("pushed") }