1. 11 Mar, 2017 2 commits
  2. 09 Mar, 2017 3 commits
  3. 06 Mar, 2017 3 commits
  4. 03 Mar, 2017 8 commits
  5. 01 Mar, 2017 5 commits
  6. 28 Feb, 2017 1 commit
  7. 27 Feb, 2017 1 commit
  8. 26 Feb, 2017 4 commits
  9. 25 Feb, 2017 4 commits
  10. 24 Feb, 2017 3 commits
  11. 22 Feb, 2017 4 commits
  12. 21 Feb, 2017 2 commits
    • attrcache: remove useless `do_init` indirection · ce6f61da
      Remove useless indirection from `git_attr_cache__init` to
      `git_attr_cache__do_init`. The difference is that the
      `git_attr_cache__init` macro first checks if the cache is already
      initialized and, if so, not call `git_attr_cache__do_init`. But
      actually, `git_attr_cache__do_init` already does the same thing and
      returns immediately if the cache is already initialized.
      
      Remove the indirection.
      Patrick Steinhardt committed
    • attrcache: replace existing file entry with `git__swap` · c1151010
      When doing an upsert of a file, we used to use `git__compare_and_swap`,
      comparing the entry's file which is to be replaced with itself. This can
      be more easily formulated by using `git__swap`, which unconditionally
      replaces the value.
      Patrick Steinhardt committed