1. 22 May, 2014 1 commit
  2. 01 May, 2014 1 commit
  3. 01 Apr, 2014 1 commit
  4. 25 Mar, 2014 1 commit
    • Make submodules externally refcounted · a15c7802
      `git_submodule` objects were already refcounted internally in case
      the submodule name was different from the path at which it was
      stored.  This makes that refcounting externally used as well, so
      `git_submodule_lookup` and `git_submodule_add_setup` return an
      object that requires a `git_submodule_free` when done.
      Russell Belfer committed
  5. 03 Nov, 2013 1 commit
    • examples: doc update · becb13c0
      Update the explanation to reflect our use of git_status_list_new() and
      make the breaks in rocco more meaningful.
      
      Clarify why GIT_STATUS_CURRENT and index_to_workdir don't always imply
      each other. Fixes #1740.
      Carlos Martín Nieto committed
  6. 02 Nov, 2013 1 commit
  7. 31 Oct, 2013 1 commit
  8. 30 Oct, 2013 1 commit
    • Extract common example helpers and reorg examples · 66902d47
      This reorganizes a few of the examples so that the main function
      comes first with the argument parsing extracted into a helper
      that can come at the end of the file (so the example focuses more
      on the use of libgit2 instead of command line support).  This also
      creates a shared examples/common.[ch] so that useful helper funcs
      can be shared across examples instead of repeated.
      Russell Belfer committed
  9. 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
  10. 20 Jun, 2013 4 commits