1. 08 Dec, 2015 1 commit
  2. 04 Nov, 2015 1 commit
  3. 27 Sep, 2015 1 commit
  4. 24 Sep, 2015 1 commit
  5. 10 Sep, 2015 1 commit
  6. 28 Aug, 2015 1 commit
  7. 13 Jul, 2015 2 commits
  8. 11 Jul, 2015 1 commit
  9. 01 Jul, 2015 1 commit
    • submodule: correctly delimit the keys to use for lookup · e0af3cb3
      The regex we use to look at the gitmodules file does not correctly
      delimit the name of submodule which we want to look up and puts '.*'
      straight after the name, maching on any submodule which has the seeked
      submodule as a prefix of its name.
      
      Add the missing '\.' in the regex so we want a full stop to exist both
      before and after the submodule name.
      Carlos Martín Nieto committed
  10. 29 Jun, 2015 3 commits
  11. 25 Jun, 2015 1 commit
  12. 22 Jun, 2015 12 commits
  13. 20 Jun, 2015 1 commit
  14. 13 May, 2015 1 commit
    • Remove the callbacks struct from the remote · 8f0104ec
      Having the setting be different from calling its actions was not a great
      idea and made for the sake of the wrong convenience.
      
      Instead of that, accept either fetch options, push options or the
      callbacks when dealing with the remote. The fetch options are currently
      only the callbacks, but more options will be moved from setters and
      getters on the remote to the options.
      
      This does mean passing the same struct along the different functions but
      the typical use-case will only call git_remote_fetch() or
      git_remote_push() and so won't notice much difference.
      Carlos Martín Nieto committed
  15. 12 Apr, 2015 1 commit
  16. 12 Mar, 2015 1 commit
  17. 03 Mar, 2015 2 commits
  18. 15 Feb, 2015 1 commit
  19. 07 Jan, 2015 1 commit
  20. 06 Jan, 2015 1 commit
  21. 22 Dec, 2014 2 commits
  22. 08 Nov, 2014 1 commit
  23. 03 Sep, 2014 1 commit
  24. 08 May, 2014 1 commit
    • Be more careful with user-supplied buffers · 1e4976cb
      This adds in missing calls to `git_buf_sanitize` and fixes a
      number of places where `git_buf` APIs could inadvertently write
      NUL terminator bytes into invalid buffers.  This also changes the
      behavior of `git_buf_sanitize` to NUL terminate a buffer if it can
      and of `git_buf_shorten` to do nothing if it can.
      
      Adds tests of filtering code with zeroed (i.e. unsanitized) buffer
      which was previously triggering a segfault.
      Russell Belfer committed