1. 10 Dec, 2012 1 commit
  2. 29 Nov, 2012 2 commits
  3. 28 Nov, 2012 1 commit
  4. 13 Nov, 2012 2 commits
  5. 09 Nov, 2012 1 commit
  6. 06 Nov, 2012 3 commits
  7. 01 Nov, 2012 2 commits
  8. 26 Oct, 2012 1 commit
  9. 20 Oct, 2012 1 commit
  10. 15 Oct, 2012 1 commit
  11. 10 Oct, 2012 1 commit
    • http: don't discard the HEAD ref · aeba5e17
      The fix for fetching from empty repositories (22935b06 protocol:
      don't store flushes; 2012-10-07) forgot to take into account the
      deletion of the flush pkt in the HTTP transport. As a result, the HEAD
      ref advertisement where we detect the remote's capabilities was
      deleted instead. Fix this.
      Carlos Martín Nieto committed
  12. 20 Sep, 2012 1 commit
  13. 13 Sep, 2012 1 commit
  14. 14 Sep, 2012 1 commit
  15. 25 Aug, 2012 1 commit
  16. 23 Aug, 2012 1 commit
  17. 04 Aug, 2012 1 commit
    • Update iterators for consistency across library · 5dca2010
      This updates all the `foreach()` type functions across the library
      that take callbacks from the user to have a consistent behavior.
      The rules are:
      
      * A callback terminates the loop by returning any non-zero value
      * Once the callback returns non-zero, it will not be called again
        (i.e. the loop stops all iteration regardless of state)
      * If the callback returns non-zero, the parent fn returns GIT_EUSER
      * Although the parent returns GIT_EUSER, no error will be set in
        the library and `giterr_last()` will return NULL if called.
      
      This commit makes those changes across the library and adds tests
      for most of the iteration APIs to make sure that they follow the
      above rules.
      Russell Belfer committed
  18. 30 Jul, 2012 4 commits
  19. 28 Jun, 2012 1 commit
  20. 05 Jun, 2012 1 commit
  21. 02 Jun, 2012 1 commit
  22. 26 May, 2012 1 commit
  23. 19 May, 2012 3 commits
  24. 17 May, 2012 2 commits
  25. 05 May, 2012 1 commit
    • Fix gitno_connect() error handling on Windows · b4b96d56
      gitno_connect() can return an error or socket, which is fine on most
      platforms where sockets are file descriptors (signed int), but on Windows,
      SOCKET is an unsigned type, which is problematic when we are trying to
      test if the socket was actually a negative error code.
      
      This fix seperates the error code and socket in gitno_connect(), and fixes
      the error handling in do_connect() functions to compensate. It appears
      that git_connect() and the git-transport do_connect() functions had bugs
      in the non-windows cases too (leaking sockets, and not properly reporting
      connection error, respectively) so I went ahead and fixed those too.
      Scott J. Goldman committed
  26. 03 May, 2012 1 commit
  27. 30 Apr, 2012 2 commits
  28. 25 Apr, 2012 1 commit