1. 28 Aug, 2013 7 commits
  2. 27 Aug, 2013 7 commits
  3. 26 Aug, 2013 4 commits
  4. 25 Aug, 2013 2 commits
  5. 24 Aug, 2013 3 commits
  6. 23 Aug, 2013 1 commit
  7. 22 Aug, 2013 8 commits
  8. 21 Aug, 2013 5 commits
  9. 20 Aug, 2013 2 commits
    • Add sorted cache data type · 0b7cdc02
      This adds a convenient new data type for caching the contents of
      file in memory when each item in that file corresponds to a name
      and you need to both be able to lookup items by name and iterate
      over them in some sorted order.  The new data type has locks in
      place to manage usage in a threaded environment.
      Russell Belfer committed
    • Don't try to pack symbolic refs · 0f0f5655
      If there were symbolic refs among the loose refs then the code
      to create packed-refs would fail trying to parse the OID out of
      them (where Git just skips trying to pack them).  This fixes it.
      Russell Belfer committed
  10. 19 Aug, 2013 1 commit
    • Skip UTF-8 BOM in binary detection · c0b01b75
      When a git_buf contains a UTF-8 BOM, the three bytes comprising
      that BOM are treated as unprintable characters.  For a small git_buf,
      the three BOM characters overwhelm the printable characters.  This
      is problematic when trying to check out a small file as the CR/LF
      filtering will not apply.
      Edward Thomson committed