1. 27 Jan, 2014 2 commits
  2. 25 Jan, 2014 1 commit
  3. 14 Nov, 2013 1 commit
  4. 12 Nov, 2013 1 commit
  5. 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
  6. 07 Nov, 2013 1 commit
  7. 04 Nov, 2013 4 commits
  8. 03 Nov, 2013 1 commit
  9. 02 Nov, 2013 1 commit
  10. 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
  11. 31 Oct, 2013 3 commits
  12. 30 Oct, 2013 10 commits
  13. 23 Oct, 2013 2 commits
  14. 21 Oct, 2013 1 commit
    • Create git_diff_line and extend git_diff_hunk · 3b5f7954
      Instead of having functions with so very many parameters to pass
      hunk and line data, this takes the existing git_diff_hunk struct
      and extends it with more hunk data, plus adds a git_diff_line.
      Those structs are used to pass back hunk and line data instead of
      the old APIs that took tons of parameters.
      
      Some work that was previously only being done for git_diff_patch
      creation (scanning the diff content for exact line counts) is now
      done for all callbacks, but the performance difference should not
      be noticable.
      Russell Belfer committed
  15. 15 Oct, 2013 1 commit
    • Diff API cleanup · 10672e3e
      This lays groundwork for separating formatting options from diff
      creation options.  This groups the formatting flags separately
      from the diff list creation flags and reorders the options.  This
      also tweaks some APIs to further separate code that uses patches
      from code that just looks at git_diffs.
      Russell Belfer committed
  16. 11 Oct, 2013 1 commit
  17. 10 Oct, 2013 4 commits
  18. 09 Oct, 2013 1 commit