- 19 Apr, 2013 1 commit
-
-
Vicent Marti committed
-
- 18 Apr, 2013 3 commits
-
-
Return error for empty name/email
Vicent Martí committed -
Carlos Martín Nieto committed
-
Nicolas Viennot committed
-
- 17 Apr, 2013 14 commits
-
-
use a longer string for dummy data in test to avoid conflicting w/ index
Vicent Martí committed -
Edward Thomson committed
-
Vicent Marti committed
-
Allow access to the cached peel data in packed-refs
Vicent Martí committed -
Vicent Marti committed
-
Vicent Marti committed
-
checkout: use cache when possible to determine if workdir item is dirty
Vicent Martí committed -
Add `git_repository_open_bare`
Vicent Martí committed -
If the on-disk file has been staged (it's stat data matches the stat data in the cache) then we need not hash the file to determine whether it differs from the checkout target; instead we can simply use the oid in the index. This prevents recomputing a file's hash unnecessarily, prevents loading the file (when filtering) and prevents edge cases where filters suggest that a file is dirty immediately after git writes the file.
Edward Thomson committed -
Vicent Marti committed
-
Update link to Perl bindings
Vicent Martí committed -
Alessandro Ghedini committed
-
Carlos Martín Nieto committed
-
Vicent Marti committed
-
- 16 Apr, 2013 2 commits
-
-
Ben Straub committed
-
This is the last minor release before 1.0preview1. Highlights of this release include: - Branch API - Checkout head, index and tree - Finished clone support - Abstracted reference API to use custom backends - Full diff support - New (faster) packbuilder - Push support - New Remotes API - Revparse support (single and range commits) - Stash support - Submodules support As always, the full changelog is available at: http://libgit2.github.com/libgit2/#p/changelog Yeah, it's a huge release. Releasing stuff sucks. Expect 1.0 and API freeze in less than a month. Your faithful maintainer, vmg Signed-off-by: Vicent Marti <tanoku@gmail.com>
Vicent Marti committed
-
- 15 Apr, 2013 19 commits
-
-
Unified rev-parse, with a revision object
Vicent Martí committed -
Fetch fixes
Vicent Martí committed -
Vicent Marti committed
-
Don't try to update anything if there are no heads to update. This saves us from trying to look into a fetch refspec when there is none. A better fix for compatibility with git when using remotes without refspecs is still needed, but this stops us from segfaulting.
Carlos Martín Nieto committed -
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
Keep the data around until free, as expected by our own fetch example
Carlos Martín Nieto committed -
Vicent Marti committed
-
Ben Straub committed
-
Ben Straub committed
-
This will probably prevent many lookup/free operations in calling code.
Ben Straub committed -
Ben Straub committed
-
Ben Straub committed
-
OpenBSD & sparc64 fixes
Vicent Martí committed -
Mixing int and size_t through pointers leads to problems in big-endian machines.
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
commit: correctly detect the start of the commit message
Vicent Martí committed -
The end of the header is signaled by to consecutive LFs and the commit message starts immediately after. Jumping over LFs at the start of the message is a bug and leads to creating different commits if when rebuilding history. This also fixes an empty commit message being returned as "\n".
Carlos Martín Nieto committed
-
- 12 Apr, 2013 1 commit
-
-
dec refcount on refdb instead of always freeing
Russell Belfer committed
-