1. 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
  2. 05 Jul, 2019 1 commit
    • examples: avoid conversion warnings when calculating progress · abf24a30
      When computing the progress, we perform some arithmetics that are
      implicitly converting from `size_t` to `int`. In one case we're
      calclulating a percentage, so we know that it should always be in the
      range of [0,100] and thus we're fine. In the other case we convert from
      bytes to kilobytes -- this should be stored in a `size_t` to avoid loss
      of precision, even though it probably won't matter due to limited
      download rates.
      Patrick Steinhardt committed
  3. 22 Feb, 2019 1 commit
  4. 15 Feb, 2019 2 commits
    • examples: create common lg2 executable · ead10785
      Inside of our networking example code, we have a git2 executable
      that acts as an entry point to all the different network
      examples. As such, it is kind of the same like the normal git(1)
      executable in that it simply arbitrates to the respective
      subcommands.
      
      Let's extend this approach and merge all examples into a single
      standalone lg2 executable. Instead of building an executable
      for all the existing examples we have, we now bundle them all
      inside of the lg2 one and let them be callable via subcommands.
      
      In the process, we can get rid of duplicated library
      initialization, deinitialization and repository discovery code.
      Instead of having each subcommand handle these on its own, we
      simply do it inside of the single main function now.
      Patrick Steinhardt committed
    • examples: merge common network code · 7562422a
      Right now, we have two sets of "common" code, one containing
      general common code and one containing network common code. As we
      intend to get rid of the network subdirectory and instead merge
      all examples into a single standalone executable, this
      distinction doesn't make a lot of sense now. Furthermore, the
      common network code is not that big.
      
      Let's get rid of the common network code by merging it into the
      general common code.
      Patrick Steinhardt committed
  5. 22 Jan, 2019 1 commit
  6. 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
  7. 09 Jan, 2017 1 commit
  8. 29 Jun, 2015 1 commit
  9. 13 May, 2015 2 commits
  10. 27 Feb, 2015 1 commit
  11. 10 Jan, 2015 1 commit
  12. 06 Mar, 2014 1 commit
  13. 25 Feb, 2014 1 commit
  14. 23 Oct, 2013 1 commit
    • indexer: include the delta stats · ab46b1d8
      The user is unable to derive the number of deltas in the pack, as that
      would require them to capture the stats exactly in the moment between
      download and final processing, which is abstracted away in the fetch.
      
      Capture these numbers for the user and expose them in the progress
      struct. The clone and fetch examples now also present this information
      to the user.
      Carlos Martín Nieto committed
  15. 02 Oct, 2013 3 commits
  16. 01 Sep, 2013 1 commit
  17. 26 Feb, 2013 1 commit
  18. 05 Feb, 2013 1 commit
  19. 31 Jan, 2013 1 commit
  20. 23 Jan, 2013 1 commit
  21. 02 Jan, 2013 1 commit
  22. 27 Dec, 2012 1 commit
  23. 20 Dec, 2012 1 commit
  24. 14 Dec, 2012 2 commits
  25. 13 Dec, 2012 3 commits
  26. 30 Nov, 2012 1 commit
  27. 27 Nov, 2012 1 commit
  28. 09 Nov, 2012 1 commit
  29. 24 Oct, 2012 1 commit
  30. 20 Oct, 2012 4 commits