- 20 Feb, 2013 1 commit
-
-
Russell Belfer committed
-
- 15 Feb, 2013 1 commit
-
-
Alessandro Ghedini committed
-
- 14 Feb, 2013 1 commit
-
-
Michael Schubert committed
-
- 11 Feb, 2013 4 commits
-
-
Fix libgit2/libgit2sharp#318
nulltoken committed -
Jameson Miller committed
-
Jameson Miller committed
-
Philip Kelley committed
-
- 07 Feb, 2013 2 commits
-
-
The callback will be called for each file, just before the `git_delta_t` gets inserted into the diff list. When the callback: - returns < 0, the diff process will be aborted - returns > 0, the delta will not be inserted into the diff list, but the diff process continues - returns 0, the delta is inserted into the diff list, and the diff process continues
yorah committed -
Philip Kelley committed
-
- 06 Feb, 2013 1 commit
-
-
Ben Straub committed
-
- 05 Feb, 2013 5 commits
-
-
Ben Straub committed
-
nulltoken committed
-
This works by having the indexer watch the return code of the callback, so will only take effect on object boundaries.
Ben Straub committed -
nulltoken committed
-
nulltoken committed
-
- 31 Jan, 2013 1 commit
-
-
Ben Straub committed
-
- 30 Jan, 2013 1 commit
-
-
This adds a `git_diff_patch_line_stats()` API that gets the total number of adds, deletes, and context lines in a patch. This will make it a little easier to emulate `git diff --stat` and the like. Right now, this relies on generating the `git_diff_patch` object, which is a pretty heavyweight way to get stat information. At some future point, it would probably be nice to be able to get this information without allocating the entire `git_diff_patch`, but that's a much larger project.
Russell Belfer committed
-
- 28 Jan, 2013 1 commit
-
-
Conflicts: src/tree.c
John Wiegley committed
-
- 27 Jan, 2013 1 commit
-
-
Philip Kelley committed
-
- 25 Jan, 2013 1 commit
-
-
This is a convenience function to get the branch name of a given ref. The returned branch name is compatible with the name that can be supplied e.g. to git_branch_lookup(). That is, the prefixes "refs/heads" or "refs/remotes" are omitted. Also added a new test for testing the new function.
Sebastian Bauer committed
-
- 23 Jan, 2013 2 commits
-
-
Vicent Marti committed
-
Vicent Marti committed
-
- 22 Jan, 2013 1 commit
-
-
Jameson Miller committed
-
- 16 Jan, 2013 2 commits
-
-
nulltoken committed
-
Sebastian Bauer committed
-
- 15 Jan, 2013 1 commit
-
-
This adds a new external API git_tree_entry_cmp and a new internal API git_tree_entry_icmp for sorting tree entries. The case insensitive one is internal only because general users should never be seeing case-insensitively sorted trees.
Russell Belfer committed
-
- 12 Jan, 2013 3 commits
-
-
Edward Thomson committed
-
Sascha Cunz committed
-
Fixes #1232
Ben Straub committed
-
- 11 Jan, 2013 2 commits
-
-
nulltoken committed
-
Sascha Cunz committed
-
- 10 Jan, 2013 2 commits
-
-
This adds an option to checkout a la the diff option to turn off fnmatch evaluation for pathspec entries. This can be useful to make sure your "pattern" in really interpretted as an exact file match only.
Russell Belfer committed -
All the ODB backends have a specific refresh interface. When reading an object, first we attempt every single backend: if the read fails, then we refresh all the backends and retry the read one more time to see if the object has appeared.
Vicent Marti committed
-
- 09 Jan, 2013 4 commits
-
-
Ben Straub committed
-
Ben Straub committed
-
Currently, push doesn't really handle tags when queueing objects. Fix it.
Michael Schubert committed -
Jameson Miller committed
-
- 08 Jan, 2013 1 commit
-
-
Edward Thomson committed
-
- 07 Jan, 2013 2 commits
-
-
This moves the implementation of these two APIs into common code that will be shared between the two. Also, this adds tests for the `git_diff_blob_to_buffer` API. Lastly, this adds some extra `const` to a few places that can use it.
Russell Belfer committed -
Ignacio Casal Quinteiro committed
-