- 30 Aug, 2023 2 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
- 25 Aug, 2023 2 commits
-
-
ci: update to macOS 12
Edward Thomson committed -
Edward Thomson committed
-
- 23 Aug, 2023 3 commits
-
-
Edward Thomson committed
-
ci: retry flaky online tests
Edward Thomson committed -
Edward Thomson committed
-
- 19 Aug, 2023 2 commits
-
-
cmake: fix openssl build on win32
Edward Thomson committed -
since f15c8ac7 libgit unconditionally depends on secur32 on Windows but only added it in cmake for the winhttp and schannel variants. In case libgit is built against openssl it would fail to link. This moves secur32 out of the https backend selection code into the global win32 condition (and while at it also adds ws2_32 to the .pc file)
Christoph Reiter committed
-
- 14 Aug, 2023 4 commits
-
-
cli: add a `git config` command
Edward Thomson committed -
config: provide an "origin" for config entries
Edward Thomson committed -
README.md: Fix link to conan packages
Edward Thomson committed -
Laurence McGlashan committed
-
- 10 Aug, 2023 2 commits
-
-
Revert "CMake: Search for ssh2 instead of libssh2."
Edward Thomson committed -
Edward Thomson committed
-
- 02 Aug, 2023 3 commits
-
-
proxy: Return an error for invalid proxy URLs instead of crashing.
Edward Thomson committed -
Edward Thomson committed
-
Test proxies specified by both host:port format in configuration options, environment variables, and `http.proxy` configuration.
Edward Thomson committed
-
- 01 Aug, 2023 4 commits
-
-
The common format for specifying proxy URLs is just 'host:port'. Handle the common case.
Edward Thomson committed -
Introduce a url parser that defaults to treating poorly specified URLs as http URLs. For example: `localhost:8080` is treated as `http://localhost:8080/` by the http-biased url parsing, instead of a URL with a scheme `localhost` and a path of `8080`..
Edward Thomson committed -
Refactor url parsing to simplify the state-passing (introducing a struct) and add a path parser for future reusability.
Edward Thomson committed -
Edward Thomson committed
-
- 30 Jul, 2023 1 commit
-
-
ssh: fix known_hosts leak in _git_ssh_setup_conn
Edward Thomson committed
-
- 27 Jul, 2023 1 commit
-
-
stransport: macOS: replace errSSLNetworkTimeout, with hard-coded value
Edward Thomson committed
-
- 26 Jul, 2023 5 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-
Instead of special casing `--help`, reorder the arguments for subcommands so that it can handle "global" arguments like `--help`, `-c key=value`, etc.
Edward Thomson committed
-
- 25 Jul, 2023 9 commits
-
-
Introduce `cli_repository_open` which will reparse command-line options looking for `-c` or `--config-env`. Add those values to an in-memory configuration database and configure the opened repository with that.
Edward Thomson committed -
Add a `config` command with `--list` and `--get`.
Edward Thomson committed -
Provide two memory-backed configuration backends -- one that takes a string in config file format `[section] key=value` and one that takes a list of strings in `section.key=value` format.
Edward Thomson committed -
Edward Thomson committed
-
A git_config_entry now knows the type of the origin for the entry ("file", "memory", etc) and the path details (for files, the path on disk). This is propagated through snapshots.
Edward Thomson committed -
The opaque `payload` on an entry is unnecessary and distracting; config entries should follow the patterns of other objects and use space elsewhere in the structure with a "base" config entry struct embedded.
Edward Thomson committed -
Edward Thomson committed
-
Don't set entry data when we "get" an entry from the collection, add the data to the entry before it's put into the collection. This keeps the entry creation logic in a single place.
Edward Thomson committed -
- Constant only available in 10.13+, causing build failures for older macOS releases Fixes: https://github.com/libgit2/libgit2/issues/6606
Christopher Nielsen committed
-
- 22 Jul, 2023 1 commit
-
-
fix: Add missing include for oidarray.
Edward Thomson committed
-
- 21 Jul, 2023 1 commit
-
-
Add a missing include for `git2/oidarray.h` so build doesn't fail on using `git_oidarray` when using custom transports. Fixes #6607
David Runge committed
-