1. 14 Jul, 2022 1 commit
  2. 20 Jun, 2022 1 commit
  3. 15 Jun, 2022 1 commit
  4. 23 Feb, 2022 1 commit
  5. 05 Jan, 2022 1 commit
  6. 09 Nov, 2021 1 commit
  7. 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
  8. 20 Jul, 2019 1 commit
  9. 17 Jan, 2019 1 commit
  10. 13 Oct, 2018 1 commit
  11. 12 Jul, 2015 1 commit
  12. 03 Mar, 2015 2 commits
  13. 02 May, 2014 1 commit
  14. 05 Feb, 2014 1 commit
  15. 30 Jan, 2014 1 commit
  16. 15 Jan, 2014 1 commit
  17. 14 Nov, 2013 1 commit
  18. 17 Sep, 2013 1 commit
    • No such thing as an orphan branch · 605da51a
      Unfortunately git-core uses the term "unborn branch" and "orphan
      branch" interchangeably. However, "orphan" is only really there for
      the checkout command, which has the `--orphan` option so it doesn't
      actually create the branch.
      
      Branches never have parents, so the distinction of a branch with no
      parents is odd to begin with. Crucially, the error messages deal with
      unborn branches, so let's use that.
      Carlos Martín Nieto committed
  19. 07 Mar, 2013 1 commit
  20. 25 Jan, 2013 1 commit
  21. 27 Nov, 2012 1 commit
  22. 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
  23. 25 Oct, 2012 1 commit
  24. 20 Oct, 2012 2 commits
  25. 19 Oct, 2012 2 commits
  26. 27 Aug, 2012 1 commit
  27. 24 Jul, 2012 1 commit
  28. 17 May, 2012 3 commits
  29. 13 May, 2012 1 commit
  30. 10 Apr, 2012 1 commit