| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Test that filter_list_apply_to_file works and can accept repo-relative
paths.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
branch: fix generated reflog message upon creation
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Fix crash in git_clone on extremely large repos
|
| | | |
|
| | | |
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | | |
Free TLS data on thread exit (win32)
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Clear the error message on git_libgit2_shutdown for all versions of
the library (no threads and Win32 threads). Drop the giterr_clear
in clar, as that shouldn't be necessary.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Set up git_trace in clar test suite.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
diff_tform: don't compare empty hashsig_heaps
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When comparing seemingly blank files, take whitespace options into
account.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Don't try to compare two empty hashsig_heaps.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
http: enforce the credential types
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The user may decide to return any type of credential, including ones we
did not say we support. Add a check to make sure the user returned an
object of the right type and error out if not.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Borrowing configuration entries
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This changes the get_entry() method to return a refcounted version of
the config entry, which you have to free when you're done.
This allows us to avoid freeing the memory in which the entry is stored
on a refresh, which may happen at any time for a live config.
For this reason, get_string() has been forbidden on live configs and a
new function get_string_buf() has been added, which stores the string in
a git_buf which the user then owns.
The functions which parse the string value takea advantage of the
borrowing to parse safely and then release the entry.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix build on mingw (master branch)
|
| | | | |
| | | | |
| | | | |
| | | | | |
It's currently required in src/openssl_stream.c only.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Windows headers #define some names that openssl uses too. Openssl
headers #undef the offending names before reusing them. But if those
offending Windows headers get included after the openssl headers the
namespace is polluted and nothing good happens.
Fixes issue #2850.
|
| |/ / /
| | | |
| | | |
| | | | |
This mainly concerns mingw build.
|
|\ \ \ \
| | | | |
| | | | | |
stash: correctly stash wd modified/index deleted
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove the signature from ref-modifying functions
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We want to use the "checkout: moving from ..." message in order to let
git know when a change of branch has happened. Make the convenience
functions for this goal write this message.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We always use "update by push".
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This namespace is about behaving like git's branch command, so let's do
exactly that instead of taking a reflog message.
This override is still available via the reference namespace.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This function is meant to simulate what git does in the reset command,
so we should include the reflog message in that.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The signature for the reflog is not something which changes
dynamically. Almost all uses will be NULL, since we want for the
repository's default identity to be used, making it noise.
In order to allow for changing the identity, we instead provide
git_repository_set_ident() and git_repository_ident() which allow a user
to override the choice of signature.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
describe example: function to add commits to opts
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add safe function to (a,rea)llocate memory which terminate example on
memory allocation failure.
Move code to allocate commits to its own function.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Allow checkout to handle newly cloned repositories, remove `GIT_CHECKOUT_SAFE_CREATE`
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When the repository does not contain an index, emulate git's behavior
and upgrade to `SAFE_CREATE`. This allows us to check out repositories
created with `git clone --no-checkout`.
|
| | | | | | | |
|
| | |_|_|_|/
| |/| | | | |
|