1. 01 Apr, 2014 3 commits
  2. 25 Mar, 2014 1 commit
    • Make submodules externally refcounted · a15c7802
      `git_submodule` objects were already refcounted internally in case
      the submodule name was different from the path at which it was
      stored.  This makes that refcounting externally used as well, so
      `git_submodule_lookup` and `git_submodule_add_setup` return an
      object that requires a `git_submodule_free` when done.
      Russell Belfer committed
  3. 06 Mar, 2014 1 commit
  4. 05 Mar, 2014 5 commits
  5. 03 Mar, 2014 3 commits
  6. 27 Feb, 2014 1 commit
  7. 25 Feb, 2014 1 commit
  8. 24 Feb, 2014 1 commit
  9. 23 Feb, 2014 1 commit
  10. 09 Feb, 2014 1 commit
  11. 08 Feb, 2014 1 commit
  12. 05 Feb, 2014 1 commit
  13. 27 Jan, 2014 2 commits
  14. 25 Jan, 2014 1 commit
  15. 14 Nov, 2013 1 commit
  16. 12 Nov, 2013 1 commit
  17. 11 Nov, 2013 1 commit
    • remote: make _ls return the list directly · 359dce72
      The callback-based method of listing remote references dates back to the
      beginning of the network code's lifetime, when we didn't know any
      better.
      
      We need to keep the list around for update_tips() after disconnect() so
      let's make use of this to simply give the user a pointer to the array so
      they can write straightforward code instead of having to go through a
      callback.
      Carlos Martín Nieto committed
  18. 07 Nov, 2013 1 commit
  19. 04 Nov, 2013 4 commits
  20. 03 Nov, 2013 1 commit
  21. 02 Nov, 2013 1 commit
  22. 01 Nov, 2013 4 commits
    • Make diff and status perform soft index reload · 4bf630b6
      This changes `git_index_read` to have two modes - a hard index
      reload that always resets the index to match the on-disk data
      (which was the old behavior) and a soft index reload that uses
      the timestamp / file size information and only replaces the index
      data if the file on disk has been modified.
      
      This then updates the git_status code to do a soft reload unless
      the new GIT_STATUS_OPT_NO_REFRESH flag is passed in.
      
      This also changes the behavior of the git_diff functions that use
      the index so that when an index is not explicitly passed in (i.e.
      when the functions call git_repository_index for you), they will
      also do a soft reload for you.
      
      This intentionally breaks the file signature of git_index_read
      because there has been some confusion about the behavior previously
      and it seems like all existing uses of the API should probably be
      examined to select the desired behavior.
      Russell Belfer committed
    • Fix typos · 4f62d559
      Ben Straub committed
    • A few formatting changes for rocco · c44820c6
      I'm not too happy about manually inserting < and > but those get
      output as html tags otherwise.
      Carlos Martín Nieto committed
  23. 31 Oct, 2013 3 commits