- 05 Feb, 2015 5 commits
-
-
Edward Thomson committed
-
Test to ensure that we can create a repository at the filesystem root. Introduces a new test environment variable, `GITTEST_INVASIVE_FILESYSTEM` for tests that do terrible things like escaping the clar sandbox and writing to the root directory. It is expected that the CI builds will enable this but that normal people would not want this.
Edward Thomson committed -
Handle 8dot3 filenames being disabled on Win32
Edward Thomson committed -
for-each-ref example: initialize libgit2 in main
Edward Thomson committed -
I don't get how it was working without git_libgit2_init() call. I run it and libgit2 throws assertion somewhere in its internals. Now it works. Updated commit with shutdown at the end.
Boris Egorov committed
-
- 04 Feb, 2015 9 commits
-
-
Fixes for pedantry
Edward Thomson committed -
Edward Thomson committed
-
README.md: Add Swift bindings "Gift"
Edward Thomson committed -
structinit test: use %PRIuZ instead of %d for size_t
Carlos Martín Nieto committed -
Brian Gesiak committed
-
Edward Thomson committed
-
Tell user if libssh was not found
Edward Thomson committed -
AppVeyor: Prettify build script
Edward Thomson committed -
Edward Thomson committed
-
- 03 Feb, 2015 5 commits
-
-
Edward Thomson committed
-
Fixes #2665
Yury G. Kudryashov committed -
diff docs: update `git_diff_delta` description
Carlos Martín Nieto committed -
Edward Thomson committed
-
Edward Thomson committed
-
- 31 Jan, 2015 1 commit
-
-
nulltoken committed
-
- 30 Jan, 2015 3 commits
-
-
64-bit Appveyor Builds
Edward Thomson committed -
Clarified git_repository_is_empty() documentation
Carlos Martín Nieto committed -
Linquize committed
-
- 27 Jan, 2015 1 commit
-
-
Pierre-Olivier Latour committed
-
- 26 Jan, 2015 9 commits
-
-
config: add parsing and getter for paths
Edward Thomson committed -
Allow passing a NULL index to git_repository_set_index()
Edward Thomson committed -
Fixed typo in git_repository_reinit_filesystem() documentation
Edward Thomson committed -
More coverity fixes
Edward Thomson committed -
Make sure sys/repository.h includes the required headers
Edward Thomson committed -
Fixed git_repository_set_bare() not setting "core.bare" correctly
Edward Thomson committed -
openssl: Add all required includes for AF_INET6 and in6_addr.
Edward Thomson committed -
describe example: fix memory allocation size
Edward Thomson committed -
pathspec: do not try to dereference NULL
Carlos Martín Nieto committed
-
- 25 Jan, 2015 4 commits
-
-
We need to allocate memory for sizeof(char *) * ncommits, not just for ncommits. Issue detected by GCC's AddressSanitizer.
Boris Egorov committed -
Jacques Germishuys committed
-
Jacques Germishuys committed
-
Jacques Germishuys committed
-
- 24 Jan, 2015 3 commits
-
-
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 -
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
-