- 21 Mar, 2015 7 commits
-
-
Jacques Germishuys committed
-
Jacques Germishuys committed
-
This fixes the build at least on FreeBSD, where those types were not defined indirectly: src/openssl_stream.c:100:18: error: variable has incomplete type 'struct in6_addr' struct in6_addr addr6; ^ src/openssl_stream.c:100:9: note: forward declaration of 'struct in6_addr' struct in6_addr addr6; ^ src/openssl_stream.c:111:18: error: use of undeclared identifier 'AF_INET' if (p_inet_pton(AF_INET, host, &addr4)) { ^ src/unix/posix.h:31:40: note: expanded from macro 'p_inet_pton' ^ src/openssl_stream.c:115:18: error: use of undeclared identifier 'AF_INET6' if(p_inet_pton(AF_INET6, host, &addr6)) { ^ src/unix/posix.h:31:40: note: expanded from macro 'p_inet_pton' ^
Raphael Kubo da Costa committed -
Pierre-Olivier Latour committed
-
It was missing "common.h" and "types.h" like other system headers. This generated compilation errors if including it directly.
Pierre-Olivier Latour committed -
Pierre-Olivier Latour committed
-
Main change: Don't treat chars > 128 as non-printable (common in UTF-8 files) Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed
-
- 18 Mar, 2015 1 commit
-
-
Fix build on mingw
Edward Thomson committed
-
- 27 Feb, 2015 2 commits
-
-
It's currently required in src/openssl_stream.c only.
Aki Koskinen committed -
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.
Aki Koskinen committed
-
- 11 Feb, 2015 1 commit
-
-
John Haley committed
-
- 26 Jan, 2015 1 commit
-
-
pathspec_match_free() should not dereference a NULL passed to it. I found this issue when I tried to run example log program with nonexistent branch: ./example/log help Such call leads to segmentation fault.
Boris Egorov committed
-
- 16 Jan, 2015 8 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
On case insensitive filesystems, we may have files in the working directory that case fold to a name we want to write. Remove those files (by default) so that we will not end up with a filename that has the unexpected case.
Edward Thomson committed -
Edward Thomson committed
-
Symbolic links that abuse case insensitivity to write into .git.
Edward Thomson committed -
Don't bother trying to recreate the previously created directory during checkout, for a modest reduction in the number of stats.
Edward Thomson committed -
The documentation for `git_path_join_unrooted` states that the base length will be returned, so that consumers like checkout know where to start creating directories instead of always creating directories at the directory root.
Edward Thomson committed -
Checkout can now provide performance data about the number of (some) syscalls performed using an optional callback. This structure remains internal-only in maintenance branches.
Edward Thomson committed
-
- 12 Jan, 2015 1 commit
-
-
clone example: don't divide by zero
Carlos Martín Nieto committed
-
- 10 Jan, 2015 1 commit
-
-
Local transports don't have data about the size, avoid dividing by zero in the callback.
Edward Thomson committed
-
- 09 Jan, 2015 5 commits
-
-
This should provide a easier way to see what kinds of changes we have, and a single place to look at the breaking changes.
Carlos Martín Nieto committed -
Fix crash in free() when git_buf_grow() fails.
Carlos Martín Nieto committed -
Jeff Hostetler committed
-
Carlos Martín Nieto committed
-
Remove symlinks from the repository
Carlos Martín Nieto committed
-
- 08 Jan, 2015 5 commits
-
-
remote: plug leak
Edward Thomson committed -
Edward Thomson committed
-
Edward Thomson committed
-
Remove the hook symlink from the test resources, so that we can have a source tree that is easy to zip up and copy around on systems that don't support symlinks. Create it dynamically at test execution instead.
Edward Thomson committed -
Load prune configuration when a remote is created.
Edward Thomson committed
-
- 07 Jan, 2015 5 commits
-
-
David Calavera committed
-
David Calavera committed
-
CHANGELOG: we've added git_describe
Carlos Martín Nieto committed -
submodule: declare vars at top of func block
Edward Thomson committed -
Add appveyor yaml
Edward Thomson committed
-
- 06 Jan, 2015 3 commits
-
-
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-