- 01 Feb, 2013 2 commits
-
-
Fix clone fail if repo head detached
Ben Straub committed -
Signed-off-by: Frank Li <lznuaa@gmail.com> Signed-off-by: nulltoken <emeric.fermas@gmail.com>
Frank Li committed
-
- 31 Jan, 2013 2 commits
-
-
Crash when resolving a ref starting with "/"
Russell Belfer committed -
A leading slash confuses the name normalization code when the flags include ALLOW_ONELEVEL. Catch this case in particular to avoid triggering an assertion in the uppercase check which expects us not to pass it an empty string. The existing tests don't catch this as they simply use the NORMAL flag. This fixes #1300.
Carlos Martín Nieto committed
-
- 30 Jan, 2013 4 commits
-
-
Add helper API for diff line stats from patch
Vicent Martí committed -
Vicent Martí committed
-
Russell Belfer committed
-
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
-
- 29 Jan, 2013 8 commits
-
-
Stricter config entry name validation
Vicent Martí committed -
Fix p_realpath on OpenBSD
Vicent Martí committed -
Vector improvements and their fallout
Russell Belfer committed -
Philip Kelley committed
-
This is @nulltoken's work to test various invalid config section and key names and make sure we are validating properly.
Russell Belfer committed -
This is a new implementation of core git's config key checking rules that prevents non-alphanumeric characters (and '-') for the top-level section and key names inside of config files. This also validates the target section name when renaming sections.
Russell Belfer committed -
Russell Belfer committed
-
OpenBSD's realpath(3) doesn't require the last part of the path to exist. Override p_realpath in this OS to bring it in line with the library's assumptions.
Carlos Martín Nieto committed
-
- 28 Jan, 2013 3 commits
-
-
Added git_treebuilder_entrycount
Vicent Martí committed -
Conflicts: src/tree.c
John Wiegley committed -
- Fix stack corruption introduced in 9bccf33c due to passing pointer to local variable _cred_acquire_called. - Fix strcmp in do_verify_push_status when expected or actual push_status is NULL
Congyi Wu committed
-
- 27 Jan, 2013 4 commits
-
-
Fix local repository clone failure
Vicent Martí committed -
Philip Kelley committed
-
Set head detach if can't found branch after download Signed-off-by: Frank Li <lznuaa@gmail.com>
Frank Li committed -
avoid use object which is already free Signed-off-by: Frank Li <lznuaa@gmail.com>
Frank Li committed
-
- 26 Jan, 2013 6 commits
-
-
Philip Kelley committed
-
Philip Kelley committed
-
Use cl_assert_equal_s() instead of strcmp().
Vicent Martí committed -
Improve valgrind suppressions
Vicent Martí committed -
Philip Kelley committed
-
Philip Kelley committed
-
- 25 Jan, 2013 9 commits
-
-
config: support trailing backslashes
Vicent Martí committed -
clone: Prevent segfault upon faulted remote creation
Vicent Martí committed -
Check whether the backslash at the end of the line is being escaped or not so as not to consider it a continuation marker when it's e.g. a Windows-style path.
Carlos Martín Nieto committed -
Michael Schubert committed
-
nulltoken committed
-
Replaced all cl_assert(!strcmp()) or semantically equivalent forms by cl_assert_equal_s().
Sebastian Bauer committed -
Add git_branch_name()
Vicent Martí committed -
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 -
The index is empty; repeated tree entries cannot collide. cc github/gitrpc#83
Scott J. Goldman committed
-
- 24 Jan, 2013 2 commits
-
-
Philip Kelley committed
-
Update remote tips on push
Philip Kelley committed
-