Update to master

This deprecates the Push struct in favour of Remote.Push()
4 files changed
tree: e04fa2c9fd211ea6d662a7da2beef65279f967d5
  1. script/
  2. vendor/
  3. .gitmodules
  4. .travis.yml
  5. blame.go
  6. blame_test.go
  7. blob.go
  8. blob_test.go
  9. branch.go
  10. branch_test.go
  11. checkout.go
  12. clone.go
  13. clone_test.go
  14. commit.go
  15. config.go
  16. credentials.go
  17. diff.go
  18. diff_test.go
  19. git.go
  20. git_test.go
  21. index.go
  22. index_test.go
  23. LICENSE
  24. Makefile
  25. merge.go
  26. merge_test.go
  27. object.go
  28. object_test.go
  29. odb.go
  30. odb_test.go
  31. packbuilder.go
  32. patch.go
  33. patch_test.go
  34. push.go
  35. push_test.go
  36. README.md
  37. refdb.go
  38. reference.go
  39. reference_test.go
  40. remote.go
  41. remote_test.go
  42. repository.go
  43. revparse.go
  44. revparse_test.go
  45. settings.go
  46. settings_test.go
  47. status.go
  48. status_test.go
  49. submodule.go
  50. tag.go
  51. tag_test.go
  52. tree.go
  53. walk.go
  54. wrapper.c
README.md

git2go

GoDoc Build Status

Go bindings for libgit2. The master branch follows the latest libgit2 release.

Installing

This project needs libgit2, which is written in C so we need to build that as well. In order to build libgit2, you need cmake, pkg-config and a C compiler. You will also need the development packages for OpenSSL and LibSSH2 if you want to use HTTPS and SSH respectively.

Run go get -d github.com/libgit2/git2go to download the code and go to your $GOPATH/src/github.com/libgit2/git2go dir. From there, we need to build the C code and put it into the resulting go binary.

git submodule update --init # get libgit2
make install

will compile libgit2 and run go install such that it's statically linked to the git2go package.

Paralellism and network operations

libgit2 uses OpenSSL and LibSSH2 for performing encrypted network connections. For now, git2go asks libgit2 to set locking for OpenSSL. This makes HTTPS connections thread-safe, but it is fragile and will likely stop doing it soon. This may also make SSH connections thread-safe if your copy of libssh2 is linked against OpenSSL. Check libgit2's THREADSAFE.md for more information.

Running the tests

Similarly to installing, running the tests requires linking against the local libgit2 library, so the Makefile provides a wrapper

make test

alternatively, if you want to pass arguments to go test, you can use the script that sets it all up

./script/with-static.sh go test -v

which will run the specified arguments with the correct environment variables.

License

M to the I to the T. See the LICENSE file if you've never seen a MIT license before.

Authors

  • Carlos Martín (@carlosmn)
  • Vicent Martí (@vmg)