1. 17 Sep, 2013 1 commit
    • No such thing as an orphan branch · 605da51a
      Unfortunately git-core uses the term "unborn branch" and "orphan
      branch" interchangeably. However, "orphan" is only really there for
      the checkout command, which has the `--orphan` option so it doesn't
      actually create the branch.
      
      Branches never have parents, so the distinction of a branch with no
      parents is odd to begin with. Crucially, the error messages deal with
      unborn branches, so let's use that.
      Carlos Martín Nieto committed
  2. 10 Sep, 2013 1 commit
  3. 26 Aug, 2013 1 commit
  4. 23 Aug, 2013 1 commit
  5. 20 Aug, 2013 1 commit
  6. 07 Aug, 2013 1 commit
  7. 13 Jul, 2013 1 commit
  8. 17 Jun, 2013 1 commit
  9. 12 Jun, 2013 1 commit
  10. 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
  11. 28 May, 2013 1 commit
  12. 16 May, 2013 2 commits
  13. 15 May, 2013 1 commit
  14. 11 May, 2013 5 commits
  15. 10 May, 2013 1 commit
  16. 08 May, 2013 1 commit
  17. 06 May, 2013 1 commit
    • git_branch_set_upstream with local branches · 3d42e9a3
      Currently git_branch_set_upstream when passed a local branch
      creates invalid configuration, for ex. if we setup branch
      'tracking_master' to track local 'master' libgit2 generates
      the following config
      
      ```
      [branch "track_master"]
        remote = .
        merge = .refs/heads/track_master
      ```
      
      The merge value is invalid and calling git_branch_upstream on
      'tracking_master' results in invalid reference error.
      
      It should do:
      
      ```
      [branch "track_master"]
        remote = .
        merge = refs/heads/master
      ```
      Nikolai Vladimirov committed
  18. 02 May, 2013 1 commit
  19. 01 May, 2013 1 commit
  20. 20 Apr, 2013 2 commits
    • remote: allow querying for refspecs · bc6374ea
      Introduce git_remote_{fetch,push}_refspecs() to get a list of refspecs
      from the remote and rename the refspec-adding functions to a less
      silly name.
      
      Use this instead of the vector index hacks in the tests.
      Carlos Martín Nieto committed
    • 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. 19 Apr, 2013 1 commit
  22. 15 Apr, 2013 4 commits
  23. 11 Apr, 2013 1 commit
  24. 09 Apr, 2013 1 commit
  25. 08 Apr, 2013 1 commit
  26. 07 Apr, 2013 2 commits
  27. 31 Mar, 2013 2 commits
  28. 30 Mar, 2013 1 commit
  29. 14 Mar, 2013 1 commit