1. 09 Nov, 2021 1 commit
  2. 17 Oct, 2021 1 commit
    • str: introduce `git_str` for internal, `git_buf` is external · f0e693b1
      libgit2 has two distinct requirements that were previously solved by
      `git_buf`.  We require:
      
      1. A general purpose string class that provides a number of utility APIs
         for manipulating data (eg, concatenating, truncating, etc).
      2. A structure that we can use to return strings to callers that they
         can take ownership of.
      
      By using a single class (`git_buf`) for both of these purposes, we have
      confused the API to the point that refactorings are difficult and
      reasoning about correctness is also difficult.
      
      Move the utility class `git_buf` to be called `git_str`: this represents
      its general purpose, as an internal string buffer class.  The name also
      is an homage to Junio Hamano ("gitstr").
      
      The public API remains `git_buf`, and has a much smaller footprint.  It
      is generally only used as an "out" param with strict requirements that
      follow the documentation.  (Exceptions exist for some legacy APIs to
      avoid breaking callers unnecessarily.)
      
      Utility functions exist to convert a user-specified `git_buf` to a
      `git_str` so that we can call internal functions, then converting it
      back again.
      Edward Thomson committed
  3. 20 Jul, 2019 1 commit
  4. 01 Dec, 2018 2 commits
  5. 10 Jun, 2018 1 commit
  6. 06 Aug, 2016 1 commit
  7. 11 Apr, 2016 1 commit
  8. 11 Feb, 2016 1 commit
  9. 09 Dec, 2015 1 commit
  10. 28 May, 2015 1 commit
  11. 16 Mar, 2015 1 commit
  12. 03 Mar, 2015 3 commits
  13. 03 Aug, 2014 1 commit
  14. 17 Mar, 2014 1 commit
  15. 07 Mar, 2014 1 commit
  16. 03 Feb, 2014 3 commits
  17. 25 Jan, 2014 1 commit
  18. 14 Nov, 2013 1 commit
  19. 15 May, 2013 1 commit
  20. 29 Mar, 2013 1 commit
  21. 07 Jan, 2013 1 commit
  22. 04 Jan, 2013 1 commit
    • Rework checkout internals (again) · cf208031
      I've tried to map out the detailed behaviors of checkout and make
      sure that we're handling the various cases correctly, along with
      providing options to allow us to emulate "git checkout" and "git
      checkout-index" with the various flags.  I've thrown away flags
      in the checkout API that seemed like clutter and added some new
      ones.  Also, I've converted the conflict callback to a general
      notification callback so we can emulate "git checkout" output and
      display "dirty" files.
      
      As of this commit, the new behavior is not working 100% but some
      of that is probably baked into tests that are not testing the
      right thing.  This is a decent snapshot point, I think, along the
      way to getting the update done.
      Russell Belfer committed
  23. 23 Nov, 2012 1 commit
    • Reset all static variables to NULL in clar's __cleanup · 9094d30b
      Without this change, any failed assertion in the second (or a later) test
      inside a test suite has a chance of double deleting memory, resulting in
      a heap corruption. See #1096 for details.
      
      This leaves alone the test cases where we "just" use cl_git_sandbox_init()
      and cl_git_sandbox_cleanup(). These methods already take good care to not
      double delete a repository.
      
      Fixes #1096
      Sascha Cunz committed
  24. 15 Nov, 2012 1 commit
  25. 09 Nov, 2012 1 commit
  26. 25 Oct, 2012 1 commit
  27. 15 Oct, 2012 1 commit
  28. 17 Sep, 2012 1 commit