1. 13 May, 2015 2 commits
    • remote: remove url and pushurl from the save logic · 22261344
      As a first step in removing the repository-saving logic, don't allow
      chaning the url or push url from a remote object, but change the
      configuration on the configuration immediately.
      Carlos Martín Nieto committed
    • 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
  2. 03 Mar, 2015 1 commit
    • Remove the signature from ref-modifying functions · 659cf202
      The signature for the reflog is not something which changes
      dynamically. Almost all uses will be NULL, since we want for the
      repository's default identity to be used, making it noise.
      
      In order to allow for changing the identity, we instead provide
      git_repository_set_ident() and git_repository_ident() which allow a user
      to override the choice of signature.
      Carlos Martín Nieto committed
  3. 08 Nov, 2014 1 commit
  4. 30 Sep, 2014 1 commit
  5. 01 Jul, 2014 1 commit
  6. 24 Apr, 2014 1 commit
    • fetchhead: deal with quotes in branch names · bdc82e1c
      The current FETCH_HEAD parsing code assumes that a quote must end the
      branch name. Git however allows for quotes as part of a branch name,
      which causes us to consider the FETCH_HEAD file as invalid.
      
      Instead of searching for a single quote char, search for a quote char
      followed by SP, which is not a valid part of a ref name.
      Carlos Martín Nieto committed
  7. 02 Apr, 2014 1 commit
  8. 14 Nov, 2013 1 commit
  9. 10 Jun, 2013 1 commit
    • Reorganize diff and add basic diff driver · 114f5a6c
      This is a significant reorganization of the diff code to break it
      into a set of more clearly distinct files and to document the new
      organization.  Hopefully this will make the diff code easier to
      understand and to extend.
      
      This adds a new `git_diff_driver` object that looks of diff driver
      information from the attributes and the config so that things like
      function content in diff headers can be provided.  The full driver
      spec is not implemented in the commit - this is focused on the
      reorganization of the code and putting the driver hooks in place.
      
      This also removes a few #includes from src/repository.h that were
      overbroad, but as a result required extra #includes in a variety
      of places since including src/repository.h no longer results in
      pulling in the whole world.
      Russell Belfer committed
  10. 06 Feb, 2013 1 commit
  11. 25 Jan, 2013 1 commit
  12. 19 Dec, 2012 1 commit
  13. 23 Nov, 2012 1 commit
    • Reset all static variables to NULL in clar's __cleanup · 9094d30b
      Without this change, any failed assertion in the second (or a later) test
      inside a test suite has a chance of double deleting memory, resulting in
      a heap corruption. See #1096 for details.
      
      This leaves alone the test cases where we "just" use cl_git_sandbox_init()
      and cl_git_sandbox_cleanup(). These methods already take good care to not
      double delete a repository.
      
      Fixes #1096
      Sascha Cunz committed
  14. 11 Nov, 2012 1 commit