1. 30 Sep, 2013 4 commits
    • Initial Implementation of progress reports during push · b176eded
      This adds the basics of progress reporting during push. While progress
      for all aspects of a push operation are not reported with this change,
      it lays the foundation to add these later. Push progress reporting
      can be improved in the future - and consumers of the API should
      just get more accurate information at that point.
      
      The main areas where this is lacking are:
      
      1) packbuilding progress: does not report progress during deltafication,
         as this involves coordinating progress from multiple threads.
      
      2) network progress: reports progress as objects and bytes are going
         to be written to the subtransport (instead of as client gets
         confirmation that they have been received by the server) and leaves
         out some of the bytes that are transfered as part of the push protocol.
         Basically, this reports the pack bytes that are written to the
         subtransport. It does not report the bytes sent on the wire that
         are received by the server. This should be a good estimate of
         progress (and an improvement over no progress).
      Jameson Miller committed
    • Merge pull request #1883 from libgit2/ntk/fix/empty_first_commit_line · 5b09db15
      Remove leading newlines from commit message
      Vicent Martí committed
    • commit: Trim message leading newlines · d27a441d
      Fix libgit2/libgit2sharp#522
      nulltoken committed
    • Tabify indentations · 27c8eb2a
      nulltoken committed
  2. 27 Sep, 2013 2 commits
  3. 25 Sep, 2013 11 commits
  4. 24 Sep, 2013 19 commits
  5. 23 Sep, 2013 1 commit
    • Remove regex usage from places that don't need it · 106c12f1
      In revwalk, we are doing a very simple check to see if a string
      contains wildcard characters, so a full regular expression match
      is not needed.
      
      In remote listing, now that we have git_config_foreach_match with
      full regular expression matching, we can take advantage of that
      and eliminate the regex here, replacing it with much simpler string
      manipulation.
      Russell Belfer committed
  6. 22 Sep, 2013 3 commits