1. 08 Jun, 2020 1 commit
  2. 01 Jun, 2020 1 commit
  3. 02 Apr, 2020 1 commit
  4. 26 Jan, 2020 1 commit
    • credential: change git_cred to git_credential · 3f54ba8b
      We avoid abbreviations where possible; rename git_cred to
      git_credential.
      
      In addition, we have standardized on a trailing `_t` for enum types,
      instead of using "type" in the name.  So `git_credtype_t` has become
      `git_credential_t` and its members have become `GIT_CREDENTIAL` instead
      of `GIT_CREDTYPE`.
      
      Finally, the source and header files have been renamed to `credential`
      instead of `cred`.
      
      Keep previous name and values as deprecated, and include the new header
      files from the previous ones.
      Edward Thomson committed
  5. 22 Nov, 2019 1 commit
  6. 06 Nov, 2019 12 commits
  7. 25 Oct, 2019 1 commit
  8. 01 Aug, 2019 1 commit
    • Adjust printf specifiers in examples code · 73a186f2
      Static analysis of example code found multiple findings of `printf` usage
      where filling value is members of git_indexer_progress object. Specifier
      used was for signed int but git_indexer_progress members are typed as
      unsigned ints. `printf` specifiers were altered to match type.
      Scott Furry committed
  9. 24 Jul, 2019 1 commit
  10. 20 Jul, 2019 1 commit
  11. 11 Jul, 2019 1 commit
  12. 05 Jul, 2019 6 commits
  13. 27 Jun, 2019 1 commit
    • Resolve static check warnings in example code · 2ba7dbbe
      Using cppcheck on libgit2 sources indicated two warnings in
      example code.
      
      merge.c was reported as having a memory leak. Fix applied
      was to `free()` memory pointed to by `parents`.
      
      init.c was reported as having a null pointer dereference
      on variable arg. Function 'usage' was being called with
      a null variable. Changed supplied parameter to empty string.
      Scott Furry committed
  14. 25 Jun, 2019 4 commits
  15. 15 Jun, 2019 1 commit
  16. 14 Jun, 2019 1 commit
    • Rename opt init functions to `options_init` · 0b5ba0d7
      In libgit2 nomenclature, when we need to verb a direct object, we name
      a function `git_directobject_verb`.  Thus, if we need to init an options
      structure named `git_foo_options`, then the name of the function that
      does that should be `git_foo_options_init`.
      
      The previous names of `git_foo_init_options` is close - it _sounds_ as
      if it's initializing the options of a `foo`, but in fact
      `git_foo_options` is its own noun that should be respected.
      
      Deprecate the old names; they'll now call directly to the new ones.
      Edward Thomson committed
  17. 16 Apr, 2019 5 commits