1. 14 Mar, 2017 1 commit
    • patch_generate: remove duplicated logic · 41019152
      Under the existing logic, we try to load patch contents differently,
      depending on whether the patch files stem from the working directory or
      not. But actually, the executed code paths are completely equal to each
      other -- so we were always the code despite the condition.
      
      Remove the condition altogether and conflate both code paths.
      Patrick Steinhardt committed
  2. 11 Mar, 2017 2 commits
  3. 09 Mar, 2017 3 commits
  4. 06 Mar, 2017 3 commits
  5. 03 Mar, 2017 8 commits
  6. 01 Mar, 2017 5 commits
  7. 28 Feb, 2017 1 commit
  8. 27 Feb, 2017 1 commit
  9. 26 Feb, 2017 4 commits
  10. 25 Feb, 2017 4 commits
  11. 24 Feb, 2017 3 commits
  12. 22 Feb, 2017 4 commits
  13. 21 Feb, 2017 1 commit
    • 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