Files
Carlos Martín Nieto c3d0633800 commit: provide functions with and without a reference name
Currently git_commit_create() takes on creating a commit and updating a
reference. Provide a better interface by splitting up each of the
concerns into named functions for each.

git_commit_create() will only create the commit, it will not modify any
reference. git_commit_create_on() takes a reference name to update and
git_commit_create_on_head() is a convenience function to update HEAD.
2018-03-22 16:23:20 +01:00
..
2018-03-19 16:08:01 -07:00
2018-02-23 16:54:39 -08:00
2017-12-23 14:59:07 +00:00
2018-02-23 16:54:39 -08:00
2015-06-29 21:23:09 +00:00
2018-03-19 16:08:01 -07:00
2017-02-17 13:01:49 +00:00
2015-02-27 00:30:50 -05:00

Writing Clar tests for libgit2

For information on the Clar testing framework and a detailed introduction please visit:

https://github.com/vmg/clar

  • Write your modules and tests. Use good, meaningful names.

  • Make sure you actually build the tests by setting:

      cmake -DBUILD_CLAR=ON build/
    
  • Test:

      ./build/libgit2_clar
    
  • Make sure everything is fine.

  • Send your pull request. That's it.