From c9353b2bd7c1cbdf8f78dad6deac64ed2f2ed9eb Mon Sep 17 00:00:00 2001 From: Máximo Cuadros Date: Fri, 16 Dec 2016 21:53:40 +0100 Subject: README and examples progress --- examples/progress/main.go | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 examples/progress/main.go (limited to 'examples/progress/main.go') diff --git a/examples/progress/main.go b/examples/progress/main.go new file mode 100644 index 0000000..e0e4c1d --- /dev/null +++ b/examples/progress/main.go @@ -0,0 +1,32 @@ +package main + +import ( + "os" + + "gopkg.in/src-d/go-git.v4" + . "gopkg.in/src-d/go-git.v4/examples" +) + +func main() { + CheckArgs("", "") + url := os.Args[1] + directory := os.Args[2] + + r, err := git.NewFilesystemRepository(directory) + CheckIfError(err) + + // as git does, when you make a clone, pull or some other operations, the + // server sends information via the sideband, this information can being + // collected provinding a io.Writer to the repository + r.Progress = os.Stdout + + // Clone the given repository to the given directory + Info("git clone %s %s", url, directory) + + err = r.Clone(&git.CloneOptions{ + URL: url, + Depth: 1, + }) + + CheckIfError(err) +} -- cgit