blob: 9a30599754d1b5557bd04e00f4a7ec22f63026f5 (
plain) (
tree)
|
|
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")
}
|