- 03 Jun, 2013 1 commit
-
-
Breaking RefDB changes
Vicent Martí committed
-
- 02 Jun, 2013 2 commits
-
-
Don't bail on parsing commits with an invalid timezone
Scott J. Goldman committed -
git doesn't do that, and it's not something that's usually actionable to fix. if you have a git repository with one bad timezone in the history, it's too late to change it most likely.
Scott J. Goldman committed
-
- 01 Jun, 2013 2 commits
-
-
Make git_index_read_tree preserve stat cache where possible
Vicent Martí committed -
Instead of just blowing away the stat cache data when loading a new tree into the index, this checks if each loaded item has a corresponding existing item with the same OID and if so, copies the stat data from the old item to the new one so it will not be blown away.
Russell Belfer committed
-
- 31 May, 2013 9 commits
-
-
Make iterators use GIT_ITEROVER & smart advance
Vicent Martí committed -
1. internal iterators now return GIT_ITEROVER when you go past the last item in the iteration. 2. git_iterator_advance will "advance" to the first item in the iteration if it is called immediately after creating the iterator, which allows a simpler idiom for basic iteration. 3. if git_iterator_advance encounters an error reading data (e.g. a missing tree or an unreadable file), it returns the error but also attempts to advance past the invalid data to prevent an infinite loop. Updated all tests and internal usage of iterators to account for these new behaviors.
Russell Belfer committed -
improve test for index extension truncation
Vicent Martí committed -
Edward Thomson committed
-
Added support for setting transport flags (No check SSL cert) to git_clo...
Vicent Martí committed -
Nathan Daly committed
-
Introduce git_reference_shorthand
Vicent Martí committed -
remote: make default tag retrieving behaviour consistent
Vicent Martí committed -
Build with the system's http-parser installation if available
Vicent Martí committed
-
- 30 May, 2013 8 commits
-
-
Vicent Marti committed
-
Veeti Paananen committed
-
yorah committed
-
Default for newly created remotes will be auto. Default when loading existing remotes with no tag retrieving behaviour set, was already auto.
yorah committed -
thread: fix segfault on Windows 64 bits
Ben Straub committed -
Vicent Marti committed
-
`lpExitCode` is a pointer to a long. A long is 32 bits wide on Windows. It means that on Windows 64bits, `GetExitCodeThread()` doesn't set/clear the high-order bytes of the 64 bits memory space pointed at by `value_ptr`.
yorah committed -
Vicent Marti committed
-
- 29 May, 2013 5 commits
-
-
allow (ignore) bare slash in gitignore
Russell Belfer committed -
Edward Thomson committed
-
Vicent Marti committed
-
Fix memory leak in oid shortener tests
Vicent Martí committed -
Russell Belfer committed
-
- 28 May, 2013 4 commits
-
-
Fix two typos in the merge docs.
Edward Thomson committed -
Arthur Schreiber committed
-
Vicent Marti committed
-
Vicent Marti committed
-
- 27 May, 2013 5 commits
-
-
Russell Belfer committed
-
packbuilder: also write index in git_packbuilder_write
Vicent Martí committed -
git_packbuilder_write() used to write a packfile to the passed file path. Instead, ask for a destination directory and create both the packfile and an index, as most users probably do expect.
Michael Schubert committed -
tests: don't verify SSH unsupported with GIT_SSH
Vicent Martí committed -
Michael Schubert committed
-
- 26 May, 2013 2 commits
-
-
Fix documentation of git_branch_delete.
Russell Belfer committed -
The reference should be freed by the user, not the library.
Daniel Rodríguez Troitiño committed
-
- 25 May, 2013 2 commits
-
-
qsort_r appeared in glibc 2.8
Vicent Martí committed -
Edward Thomson committed
-