1. 24 May, 2016 1 commit
  2. 23 May, 2016 1 commit
  3. 19 May, 2016 3 commits
  4. 18 May, 2016 1 commit
  5. 17 May, 2016 1 commit
    • Introduce a function to create a tree based on a different one · 9464f9eb
      Instead of going through the usual steps of reading a tree recursively
      into an index, modifying it and writing it back out as a tree, introduce
      a function to perform simple updates more efficiently.
      
      `git_tree_create_updated` avoids reading trees which are not modified
      and supports upsert and delete operations. It is not as versatile as
      modifying the index, but it makes some common operations much more
      efficient.
      Carlos Martín Nieto committed
  6. 09 May, 2016 1 commit
  7. 08 May, 2016 1 commit
  8. 06 May, 2016 2 commits
  9. 04 May, 2016 2 commits
  10. 03 May, 2016 5 commits
  11. 02 May, 2016 7 commits
    • Merge pull request #3759 from libgit2/cmn/faster-header · 4d384d6b
      odb: avoid inflating the full delta to read the header
      Edward Thomson committed
    • delta-apply: fix sign extension · 153fde5b
      We compute offsets by executing `off |= (*delta++ << 24)` for
      multiple constants, where `off` is of type `size_t` and `delta`
      is of type `unsigned char`. The usual arithmetic conversions (see
      ISO C89 §3.2.1.5 "Usual arithmetic conversions") kick in here,
      causing us to promote both operands to `int` and then extending
      the result to an `unsigned long` when OR'ing it with `off`.
      The integer promotion to `int` may result in wrong size
      calculations for big values.
      
      Fix the issue by making the constants `unsigned long`, causing both
      operands to be promoted to `unsigned long`.
      Patrick Steinhardt committed
    • odb_loose: fix undefined behavior when computing size · 7f407710
      An object's size is computed by reading the object header's size
      field until the most significant bit is not set anymore. To get
      the total size, we increase the shift on each iteration and add
      the shifted value to the total size.
      
      We read the current value into a variable of type `unsigned
      char`, from which we then take all bits except the most
      significant bit and shift the result. We will end up with a
      maximum shift of 60, but this exceeds the width of the value's
      type, resulting in undefined behavior.
      
      Fix the issue by instead reading the values into a variable of
      type `unsigned long`, which matches the required width. This is
      equivalent to git.git, which uses an `unsigned long` as well.
      Patrick Steinhardt committed
    • checkout: set ignorecase=0 when config lookup fails · 7b24c4fd
      When `git_repository__cvar` fails we may end up with a
      `ignorecase` value of `-1`. As we subsequently check if
      `ignorecase` is non-zero, we may end up reporting that data
      should be removed when in fact it should not.
      
      Err on the safer side and set `ignorecase = 0` when
      `git_repository__cvar` fails.
      Patrick Steinhardt committed
    • merge_file: do not unnecessarily check ours/theirs for NULL · fcd1b786
      The `merge_file__xdiff` function checks if either `ours` or
      `theirs` is `NULL`. The function is to be called with existing
      files, though, and in fact already unconditionally dereferences
      both pointers.
      
      Remove the unnecessary check to silence warnings.
      Patrick Steinhardt committed
    • odb: avoid inflating the full delta to read the header · a97b769a
      When we read the header, we want to know the size and type of the
      object. We're currently inflating the full delta in order to read the
      first few bytes. This can mean hundreds of kB needlessly inflated for
      large objects.
      
      Instead use a packfile stream to read just enough so we can read the two
      varints in the header and avoid inflating most of the delta.
      Carlos Martín Nieto committed
  12. 29 Apr, 2016 4 commits
  13. 28 Apr, 2016 1 commit
  14. 27 Apr, 2016 1 commit
  15. 26 Apr, 2016 8 commits
  16. 25 Apr, 2016 1 commit