1. 21 Apr, 2014 1 commit
  2. 02 Apr, 2014 1 commit
  3. 05 Feb, 2014 3 commits
  4. 27 Jan, 2014 1 commit
  5. 12 Dec, 2013 1 commit
  6. 18 Nov, 2013 1 commit
  7. 14 Nov, 2013 1 commit
  8. 11 Nov, 2013 2 commits
  9. 08 Nov, 2013 1 commit
  10. 07 Nov, 2013 1 commit
  11. 05 Nov, 2013 2 commits
  12. 25 Oct, 2013 1 commit
  13. 23 Oct, 2013 1 commit
  14. 21 Oct, 2013 1 commit
  15. 03 Oct, 2013 2 commits
  16. 02 Oct, 2013 4 commits
  17. 30 Sep, 2013 1 commit
    • 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
  18. 14 Aug, 2013 1 commit
    • Test SSH in travis · 5be622fb
      Set up the ssh credentials so we are able to talk to localhost and
      issue git commands. Move to use a script, as the command list is
      getting somewhat long.
      
      While here, delay installing valgrind until we need it, as it and its
      dependencies are by far the largest downloads and this allows us to
      start compiling (and failing) faster and we only incur this cost when
      the test suite runs successfully.
      Carlos Martín Nieto committed
  19. 12 Jul, 2013 1 commit
  20. 20 Apr, 2013 1 commit
    • remote: handle multiple refspecs · 4330ab26
      A remote can have a multitude of refspecs. Up to now our git_remote's
      have supported a single one for each fetch and push out of simplicity
      to get something working.
      
      Let the remotes and internal code know about multiple remotes and get
      the tests passing with them.
      
      Instead of setting a refspec, the external users can clear all and add
      refspecs. This should be enough for most uses, though we're still
      missing a querying function.
      Carlos Martín Nieto committed
  21. 11 Feb, 2013 1 commit
  22. 31 Jan, 2013 1 commit
  23. 28 Jan, 2013 1 commit
  24. 24 Jan, 2013 1 commit
  25. 22 Jan, 2013 1 commit
  26. 09 Jan, 2013 3 commits
  27. 04 Jan, 2013 1 commit
    • Fix bug in gen_pktline() for deletes of missing remote refs · d73d52df
      * gen_pktline() in smart_protocol.c was skipping refspecs that deleted
        refs that were not advertised by the server.  The new behavior is to
        send a delete command with an old-id of zero, which matches the behavior
        of the official git client.
      * Update test_network_push__delete() in reaction to above fix.
      * Obviate messy logic that handles missing push_spec rrefs by canonicalizing
        push_spec.  After calculate_work(), loid, roid, and rref, are filled in with
        exactly what is sent to the server
      Congyi Wu committed
  28. 02 Jan, 2013 2 commits
  29. 20 Dec, 2012 1 commit