1. 20 Jul, 2019 1 commit
  2. 28 Sep, 2018 1 commit
    • config: rename "config_file.h" to "config_backend.h" · b944e137
      The header "config_file.h" has a list of inline-functions to access the
      contents of a config backend without directly messing with the struct's
      function pointers. While all these functions are called
      "git_config_file_*", they are in fact completely backend-agnostic and
      don't care whether it is a file or not. Rename all the function to
      instead be backend-agnostic versions called "git_config_backend_*" and
      rename the header to match.
      Patrick Steinhardt committed
  3. 13 Jul, 2018 1 commit
    • treewide: remove use of C++ style comments · 9994cd3f
      C++ style comment ("//") are not specified by the ISO C90 standard and
      thus do not conform to it. While libgit2 aims to conform to C90, we did
      not enforce it until now, which is why quite a lot of these
      non-conforming comments have snuck into our codebase. Do a tree-wide
      conversion of all C++ style comments to the supported C style comments
      to allow us enforcing strict C90 compliance in a later commit.
      Patrick Steinhardt committed
  4. 10 Jun, 2018 1 commit
  5. 30 Oct, 2017 1 commit
  6. 09 Oct, 2017 1 commit
    • config: pass repository when opening config files · 529e873c
      Our current configuration logic is completely oblivious of any
      repository, but only cares for actual file paths. Unfortunately, we are
      forced to break this assumption by the introduction of conditional
      includes, which are evaluated in the context of a repository. Right now,
      only one conditional exists with "gitdir:" -- it will only include the
      configuration if the current repository's git directory matches the
      value passed to "gitdir:".
      
      To support these conditionals, we have to break our API and make the
      repository available when opening a configuration file. This commit
      extends the `open` call of configuration backends to include another
      repository and adjusts existing code to have it available. This includes
      the user-visible functions `git_config_add_file_ondisk` and
      `git_config_add_backend`.
      Patrick Steinhardt committed
  7. 31 Mar, 2016 1 commit
  8. 28 Mar, 2016 2 commits
  9. 18 Sep, 2015 1 commit
  10. 13 Sep, 2015 1 commit
  11. 12 Aug, 2015 3 commits
  12. 04 May, 2015 7 commits
  13. 23 Apr, 2015 1 commit
  14. 21 Apr, 2015 2 commits
  15. 03 Mar, 2015 1 commit
    • config: borrow refcounted references · 9a97f49e
      This changes the get_entry() method to return a refcounted version of
      the config entry, which you have to free when you're done.
      
      This allows us to avoid freeing the memory in which the entry is stored
      on a refresh, which may happen at any time for a live config.
      
      For this reason, get_string() has been forbidden on live configs and a
      new function get_string_buf() has been added, which stores the string in
      a git_buf which the user then owns.
      
      The functions which parse the string value takea advantage of the
      borrowing to parse safely and then release the entry.
      Carlos Martín Nieto committed
  16. 23 Oct, 2014 1 commit
  17. 16 Jul, 2014 1 commit
  18. 18 Apr, 2014 2 commits
  19. 11 Dec, 2013 1 commit
    • Improve GIT_EUSER handling · 96869a4e
      This adds giterr_user_cancel to return GIT_EUSER and clear any
      error message that is sitting around.  As a result of using that
      in places, we need to be more thorough with capturing errors that
      happen inside a callback when used internally.  To help with that,
      this also adds giterr_capture and giterr_restore so that when we
      internally use a foreach-type function that clears errors and
      converts them to GIT_EUSER, it is easier to restore not just the
      return value, but the actual error message text.
      Russell Belfer committed
  20. 14 Nov, 2013 1 commit
  21. 07 Nov, 2013 2 commits
  22. 05 Nov, 2013 1 commit
  23. 08 Aug, 2013 1 commit
    • config: allow empty string as value · c57f6682
      `git_config_set_string(config, "config.section", "")` fails when
      escaping the value.
      
      The buffer in `escape_value` is allocated without NULL-termination. And
      in case of empty string 0 is passed for buffer size in `git_buf_grow`.
      
      `git_buf_detach` returns NULL when the allocated size is 0 and that
      leads to an error return in `GITERR_CHECK_ALLOC` called after
      `escape_value`
      
      The change in `config_file.c` was suggested by Russell Belfer <rb@github.com>
      Nikolai Vladimirov committed
  24. 09 Mar, 2013 1 commit
  25. 25 Jan, 2013 1 commit
  26. 27 Nov, 2012 1 commit
  27. 23 Oct, 2012 2 commits