- 12 Jun, 2013 4 commits
-
-
This changes the size data to uint32_t, fixes the array growth logic to use a simple 1.5x multiplier, and uses a generic inline function for growing the array to make the git_array_alloc API feel more natural (i.e. it returns a pointer to the new item).
Russell Belfer committed -
This adds two new public APIs: git_diff_patch_from_blobs and git_diff_patch_from_blob_and_buffer, plus it refactors the code for git_diff_blobs and git_diff_blob_to_buffer so that they code is almost entirely shared between these APIs, and adds tests for the new APIs.
Russell Belfer committed -
Russell Belfer committed
-
This adds real tests for user-configured diff drivers and in the process found a bunch of bugs.
Russell Belfer committed
-
- 11 Jun, 2013 1 commit
-
-
This implements the loading of regular expression pattern lists for diff drivers that search for function context in that way. This also changes the way that diff drivers update options and interface with xdiff APIs to make them a little more flexible.
Russell Belfer committed
-
- 10 Jun, 2013 4 commits
-
-
Russell Belfer committed
-
Russell Belfer committed
-
Russell Belfer committed
-
This is a significant reorganization of the diff code to break it into a set of more clearly distinct files and to document the new organization. Hopefully this will make the diff code easier to understand and to extend. This adds a new `git_diff_driver` object that looks of diff driver information from the attributes and the config so that things like function content in diff headers can be provided. The full driver spec is not implemented in the commit - this is focused on the reorganization of the code and putting the driver hooks in place. This also removes a few #includes from src/repository.h that were overbroad, but as a result required extra #includes in a variety of places since including src/repository.h no longer results in pulling in the whole world.
Russell Belfer committed
-
- 05 Jun, 2013 7 commits
-
-
Russell Belfer committed
-
This implements a basic callback to extract function context for a diff. It always uses the same search heuristic right now with no regular expressions or language-specific variants. Those will come next, I think.
Russell Belfer committed -
Vicent Marti committed
-
Ensure git_futils_mkdir won't mkdir root
Vicent Martí committed -
This makes sure that git_futils_mkdir always skips over the root directory at a minimum, even on platforms where the root is not simply '/'. Also, this removes the GIT_WIN32 ifdef in favor of making EACCES as a potentially recoverable error on all platforms.
Russell Belfer committed -
Allow creation of directories under the volume root in Win32
Vicent Martí committed -
We ran into an issue where cloning a repository to a folder directly underneath the root of a volume (e.g. 'd:\libgit2') would fail with an access denied error. This was traced down to a call to make a directory that is the root (e.g. 'd:') could return an error indicated access denied instead of an error indicating the path already exists. This change now handles the access denied error on Win32 and checks for the existence of the folder.
Jameson Miller committed
-
- 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 2 commits
-
-
allow (ignore) bare slash in gitignore
Russell Belfer committed -
Edward Thomson committed
-