- 05 Jan, 2022 1 commit
-
-
ntmlclient: fix linking with libressl
Edward Thomson committed
-
- 31 Dec, 2021 1 commit
-
-
Peter Pettersson committed
-
- 24 Dec, 2021 6 commits
-
-
Remove PSGit from Language Bindings section of README
Edward Thomson committed -
PSGit is not using libgit2 library. It is stub of a library and is not developed further.
Marcin Kolenda committed -
ci: build with ssh on nightly
Edward Thomson committed -
Edward Thomson committed
-
remote: refactor insteadof application
Edward Thomson committed -
Using the insteadof helper would leak memory when we didn't really want the pushInsteadOf configuration. Refactor the choice into the function that allocates memory (or now, not) and use a more idiomatic `int` return code.
Edward Thomson committed
-
- 23 Dec, 2021 15 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
punkymaniac committed
-
See commit f0e693b1
punkymaniac committed -
punkymaniac committed
-
Since we are able to give our own git checkout options, the default git checkout strategy will be the same as initialized in a new git_checkout_options struct.
punkymaniac committed -
Extend the `git_worktree_add_options` to include `git_checkout_options`. github issue #5949
punkymaniac committed -
blob: identify binary content
Edward Thomson committed -
Config parsing
Edward Thomson committed -
git_commit_summary: ignore lines with spaces
Edward Thomson committed -
remotes: fix insteadOf/pushInsteadOf handling
Edward Thomson committed -
Better revparse compatibility for at time notation
Edward Thomson committed -
Fix a long long that crept past
Edward Thomson committed -
cmake: use project-specific root variable instead of CMAKE_SOURCE_DIR
Edward Thomson committed -
Also applies to *_BINARY_DIR. This effectively reverts 84083dcc, which broke all users of libgit2 that use it as a CMake subdirectory (via `add_subdirectory()`). This is because CMAKE_SOURCE_DIR refers to the root-most CMake directory, which in the case of `add_subdirectory()` is a parent project to libgit2 and thus the paths don't make any sense to the configuration files. Corollary, CMAKE_SOURCE_DIR only makes sense if the CMake project is always the root project - which can rarely be guaranteed. In all honesty, CMake should deprecate and eventually remove CMAKE_SOURCE_DIR and CMAKE_BINARY_DIR. It's been the source of headaches and confusion for years, they're rarely useful over CMAKE_CURRENT_(SOURCE|BINARY)_DIR or PROJECT_(SOURCE|BINARY)_DIR, and they cause a lot of confusing configuration and source code layouts to boot. Any time they are used, they break `add_subdirectory()` almost 100% of the time, cause confusing error messages, and hide subtle bugs.
Josh Junon committed
-
- 12 Dec, 2021 1 commit
-
-
Calvin Buckley committed
-
- 10 Dec, 2021 1 commit
-
-
Introduce `git_blob_data_is_binary` to examine a blob's data, instead of the blob itself. A replacement for `git_buf_is_binary`.
Edward Thomson committed
-
- 06 Dec, 2021 3 commits
-
-
(fixes issue #6088) Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed -
Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed -
(fixes issue #6089) Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed
-
- 05 Dec, 2021 1 commit
-
-
Introduce `git_object_rawcontent_is_valid`
Edward Thomson committed
-
- 01 Dec, 2021 3 commits
-
-
Users may want to validate raw object content; provide them a function to do so.
Edward Thomson committed -
Return `GIT_EINVALID` on parse errors so that direct callers of parse functions can determine when there was a failure to parse the object. The object parser functions will swallow this error code to prevent it from propagating down the chain to end-users. (`git_merge` should not return `GIT_EINVALID` when a commit it tries to look up is not valid, this would be too vague to be useful.) The only public function that this affects is `git_signature_from_buffer`, which is now documented as returning `GIT_EINVALID` when appropriate.
Edward Thomson committed -
Minor code cleanups
Edward Thomson committed
-
- 25 Nov, 2021 1 commit
-
-
Fixes libgit2/libgit2#6065
Przemyslaw Ciezkowski committed
-
- 23 Nov, 2021 1 commit
-
-
Conflicts: src/revparse.c
Yoichi Nakayama committed
-
- 22 Nov, 2021 6 commits
-
-
Fix repo init when template dir is non-existent
Edward Thomson committed -
Edward Thomson committed
-
Instead of using the project-specific `libgit2_SOURCE_DIR` and `libgit2_BINARY_DIR` variables, use `CMAKE_SOURCE_DIR` and `CMAKE_BINARY_DIR`.
Edward Thomson committed -
The filebuf functions should use hashes directly, not indirectly using the oid functions.
Edward Thomson committed -
The tests that examine sha1 behavior (including collision detection) should test against the hash functionality directly, not indirectly using the oid functions.
Edward Thomson committed -
Remove some unnecessary includes from utility code.
Edward Thomson committed
-