- 03 Sep, 2012 1 commit
-
-
Michael Schubert committed
-
- 30 Aug, 2012 1 commit
-
-
Ben Straub committed
-
- 29 Aug, 2012 2 commits
-
-
repository: add failing repo initialization test
Russell Belfer committed -
nulltoken committed
-
- 28 Aug, 2012 4 commits
-
-
signature: make the OS give us the offset for git_signature_now
Vicent Martí committed -
Michael Schubert committed
-
There is a better and less fragile way to calculate time offsets. Let the OS take care of dealing with DST and simply take the the offset between the local time and UTC that it gives us.
Carlos Martín Nieto committed -
Passing SSL_VERIFY_PEER makes OpenSSL shut down the connection if the certificate is invalid, without giving us a chance to ignore that error. Pass SSL_VERIFY_NONE and call SSL_get_verify_result if the user wanted us to check. When no CNs match, we used to jump to on_error which gave a bogus error as that's for OpenSSL errors. Jump to cert_fail so we tell the user that the error came from checking the certificate.
Carlos Martín Nieto committed
-
- 27 Aug, 2012 11 commits
-
-
Conflicts: include/git2/refs.h
Vicent Marti committed -
Make git_object_peel a bit smarter
Vicent Martí committed -
refs: expose git_reference_normalize_name()
Vicent Martí committed -
revwalk: refuse push of non-commit objects
Vicent Martí committed -
This expands the types of peeling that `git_object_peel` knows how to do to include TAG -> BLOB peeling, and makes the errors slightly more consistent depending on the situation. It also adds a new special behavior where peeling to ANY will peel until the object type changes (e.g. chases TAGs to a non-TAG). Using this expanded peeling, this replaces peeling code that was embedded in `git_tag_peel` and `git_reset`.
Russell Belfer committed -
branch: reduce code duplication
Russell Belfer committed -
nulltoken committed
-
Check the type of the pushed object immediately instead of starting the walk and failing in between.
Michael Schubert committed -
nulltoken committed
-
Vicent Marti committed
-
Vicent Marti committed
-
- 25 Aug, 2012 5 commits
-
-
It's not really needed with the current code as we have EOS and the sideband's flush to tell us we're done. Keep the distinction between processed and received objects.
Carlos Martín Nieto committed -
This poor transport was forgotten in the recent sideband support.
Carlos Martín Nieto committed -
Make sure that idx->pack isn't NULL before trying to free resources under it.
Carlos Martín Nieto committed -
Revparse: GIT_EAMBIGUOUS
Vicent Martí committed -
Revparse now returns EAMBIGUOUS if the the spec doesn't match any refs/tags, and is <4 characters.
Ben Straub committed
-
- 24 Aug, 2012 15 commits
-
-
Add sideband support
Vicent Martí committed -
Submodule extensions
Vicent Martí committed -
new config file locations and defaults
Vicent Martí committed -
As of git v1.7.12, $HOME/.config/git/ is supported as a new location for "config", "attributes", and "ignore" files.
Russell Belfer committed -
Russell Belfer committed
-
Depending on what you had done before adding new items to the internal ignores list, it was possible for the cache of ignore data to be uninitialized.
Russell Belfer committed -
Just clean up valgrind warnings about uninitialized memory and also clear out errno in some cases where it results in a false error message being generated at a later point.
Russell Belfer committed -
Carlos Martín Nieto committed
-
This lets us notify the user of what the remote end is doing while we wait for it to start sending us the packfile.
Carlos Martín Nieto committed -
This is a big redesign of the git_submodule_status API and the implementation of the redesigned API. It also fixes a number of bugs that I found in other parts of the submodule API while writing the tests for the status part. This also fixes a couple of bugs in the iterators that had not been noticed before - one with iterating when there is a gitlink (i.e. separate-work-dir) and one where I was treating anything even vaguely submodule-like as a submodule, more aggressively than core git does.
Russell Belfer committed -
This fixes up a number of problems flagged by valgrind and also cleans up the internal `git_submodule` allocation handling overall with a simpler model.
Russell Belfer committed -
This replaces the old submodule API with a new extended API that supports most of the things that can be done with `git submodule`.
Russell Belfer committed -
Russell Belfer committed
-
Russell Belfer committed
-
We can't always rely on the network telling us when the download is finished. Recognize it from the indexer itself.
Carlos Martín Nieto committed
-
- 23 Aug, 2012 1 commit
-
-
Add git_repository_init_ext for power initters
Vicent Martí committed
-