- 02 Nov, 2015 1 commit
-
-
Vicent Marti committed
-
- 30 Oct, 2015 4 commits
-
-
index: read_index must update hashes
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
Edward Thomson committed
-
Carlos Martín Nieto committed
-
- 29 Oct, 2015 2 commits
-
-
Fix segfault when reading reflog with extra newlines
Carlos Martín Nieto committed -
Using calloc instead of malloc because the parse error will lead to an immediate free of committer (and its properties, which can segfault on free if undefined - test_refs_reflog_reflog__reading_a_reflog_with_invalid_format_returns_error segfaulted before the fix). #3458
Stjepan Rajko committed
-
- 28 Oct, 2015 10 commits
-
-
Edward Thomson committed
-
pool: Simplify implementation
Vicent Marti committed -
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
cc @carlosmn
Vicent Marti committed -
Vicent Marti committed
-
Better REUC generation when merging
Vicent Marti committed
-
- 27 Oct, 2015 3 commits
-
-
Vicent Marti committed
-
Vicent Marti committed
-
Inserting new REUC entries can quickly become pathological given that each insert unsorts the REUC vector, and both subsequent lookups *and* insertions will require sorting it again before being successful. To avoid this, we're switching to `git_vector_insert_sorted`: this keeps the REUC vector constantly sorted and lets us use the `on_dup` callback to skip an extra binary search on each insertion.
Vicent Marti committed
-
- 26 Oct, 2015 2 commits
-
-
Fix docs typo geterr_clear -> giterr_clear
Carlos Martín Nieto committed -
Stjepan Rajko committed
-
- 23 Oct, 2015 5 commits
-
-
inttypes.h is built-in header file since MSVC 2013
Edward Thomson committed -
cmake: split sources into original paths for Xcode and MSVC
Carlos Martín Nieto committed -
xdiff: reference util.h in parent directory
Carlos Martín Nieto committed -
merge: add GIT_MERGE_TREE_FAIL_ON_CONFLICT
Vicent Marti committed -
The MSVC_SPLIT_SOURCES function is helpful for other IDEs, like Xcode, and will split the source files up into their target directories, instead of merely placing them all in a "Sources" directory. Rename MSVC_SPLIT_SOURCES to IDE_SPLIT_SOURCES and enable it for Xcode.
Edward Thomson committed
-
- 22 Oct, 2015 5 commits
-
-
Provide a new merge option, GIT_MERGE_TREE_FAIL_ON_CONFLICT, which will stop on the first conflict and fail the merge operation with GIT_EMERGECONFLICT.
Edward Thomson committed -
Nanoseconds in the index: ignore for diffing
Carlos Martín Nieto committed -
Although CMake will correctly configure include directories for us, some people may use their own build system, and we should reference `util.h` based on where it actually lives.
Edward Thomson committed -
Although our index contains the literal time present in the index, we do not read nanoseconds from disk, and thus we should not use them in any comparisons, lest we always think our working directory is dirty. Guard this behind a `GIT_USE_NSECS` for future improvement.
Edward Thomson committed -
Test that nanoseconds are round-tripped correctly when we read an index file that contains them. We should, however, ignore them because we don't understand them, and any new entries in the index should contain a `0` nsecs field, while existing preserving entries.
Edward Thomson committed
-
- 21 Oct, 2015 8 commits
-
-
The reason is that the types defined in libgit2's inttypes.h collide with system inttypes.h 3rd party library header files may directly reference MSVC's built-in inttypes.h Fixes #3476
Linquize committed -
config: add a ProgramData level
Edward Thomson committed -
api: be explicit about our C linkage
Carlos Martín Nieto committed -
Edward Thomson committed
-
This is where portable git stores the global configuration which we can use to adhere to it even though git isn't quite installed on the system.
Carlos Martín Nieto committed -
signature: Strip crud
Vicent Marti committed -
Vicent Marti committed
-
Vicent Marti committed
-