| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
This reduces the chances of a crash in the thread tests. This shouldn't
affect general usage too much, since the main usage of these functions
are to read into an empty buffer.
|
|
|
|
|
|
| |
Instead of relying on the size and timestamp, which can hide changes
performed in the same second, hash the file content's when we care about
detecting changes.
|
|
|
|
|
|
|
|
|
| |
We currently use the timestamp in order to decide whether a config file
has changed since we last read it.
This scheme falls down if the file is written twice within the same
second, as we fail to detect the file change after the first read in
that second.
|
|\
| |
| | |
index: read_index must update hashes
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
Fix segfault when reading reflog with extra newlines
|
| |
| |
| |
| |
| |
| | |
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
|
| | |
|
|\ \
| | |
| | | |
pool: Simplify implementation
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
cc @carlosmn
|
|/ / |
|
|\ \
| | |
| | | |
Better REUC generation when merging
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|\ \
| |/
|/| |
Fix docs typo geterr_clear -> giterr_clear
|
|/ |
|
|\
| |
| | |
inttypes.h is built-in header file since MSVC 2013
|
| |
| |
| |
| |
| |
| |
| | |
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
|
|\ \
| | |
| | | |
cmake: split sources into original paths for Xcode and MSVC
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| | | |
| | | | |
xdiff: reference util.h in parent directory
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
|\ \ \ \
| |_|/ /
|/| | | |
merge: add GIT_MERGE_TREE_FAIL_ON_CONFLICT
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |_|/
|/| | |
Nanoseconds in the index: ignore for diffing
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| |/
| |
| |
| |
| |
| |
| | |
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.
|
|\ \
| | |
| | | |
config: add a ProgramData level
|
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |_|/
|/| | |
api: be explicit about our C linkage
|
|/ / |
|
|\ \
| |/
|/| |
signature: Strip crud
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
revwalk: make commit list use 64 bits for time
|
| |
| |
| |
| |
| |
| |
| |
| | |
We moved the "main" parsing to use 64 bits for the timestamp, but the
quick parsing for the revwalk did not. This means that for large
timestamps we fail to parse the time and thus the walk.
Move this parser to use 64 bits as well.
|
|\ \
| | |
| | | |
Preserve modes from a conflict in `git_index_insert`
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When we do not trust the on-disk mode, we use the mode of an existing
index entry. This allows us to preserve executable bits on platforms
that do not honor them on the filesystem.
If there is no stage 0 index entry, also look at conflicts to attempt
to answer this question: prefer the data from the 'ours' side, then
the 'theirs' side before falling back to the common ancestor.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix pathological performance in ODB lookups
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
For most real use cases, repositories with alternates use them as main
object storage. Checking the alternate for objects before the main
repository should result in measurable speedups.
Because of this, we're changing the sorting algorithm to prioritize
alternates *in cases where two backends have the same priority*. This
means that the pack backend for the alternate will be checked before the
pack backend for the main repository *but* both of them will be checked
before any loose backends.
|