1. 09 Sep, 2013 8 commits
  2. 03 Sep, 2013 1 commit
  3. 01 Sep, 2013 2 commits
  4. 16 Aug, 2013 2 commits
  5. 26 Jul, 2013 1 commit
  6. 10 Jul, 2013 10 commits
  7. 20 Jun, 2013 4 commits
  8. 18 May, 2013 1 commit
  9. 16 May, 2013 2 commits
    • Add cat-file example and increase const use in API · 58206c9a
      This adds an example implementation that emulates git cat-file.
      It is a convenient and relatively simple example of getting data
      out of a repository.
      
      Implementing this also revealed that there are a number of APIs
      that are still not using const pointers to objects that really
      ought to be.  The main cause of this is that `git_vector_bsearch`
      may need to call `git_vector_sort` before doing the search, so a
      const pointer to the vector is not allowed.  However, for tree
      objects, with a little care, we can ensure that the vector of
      tree entries is always sorted and allow lookups to take a const
      pointer.  Also, the missing const in commit objects just looks
      like an oversight.
      Russell Belfer committed
  10. 15 May, 2013 1 commit
  11. 11 May, 2013 1 commit
  12. 23 Apr, 2013 1 commit
  13. 15 Apr, 2013 4 commits
  14. 10 Apr, 2013 1 commit
  15. 09 Apr, 2013 1 commit