Log

Author Commit Date CI Message
Boris Egorov 23d1dbe9 2015-02-06T11:43:12 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.
Edward Thomson 3db1b15e 2015-02-05T20:01:56 Merge pull request #2884 from libgit2/cmn/template-path repository: parse init.templatedir as a path
Carlos Martín Nieto cc36f424 2015-02-06T01:09:26 repository: parse init.templatedir as a path This is a path so we must use the path getter so we get the tilde expansion done.
Edward Thomson bebd2017 2015-02-05T14:10:25 Merge pull request #2881 from ethomson/clar Update clar to d17c7f6
Edward Thomson 83276dcc 2015-02-05T13:24:38 Update clar to d17c7f6
Edward Thomson 9bf5bd7c 2015-02-05T09:19:46 Merge pull request #2867 from ethomson/8dot3 Handle 8dot3 filenames being disabled on Win32
Edward Thomson 3dc92940 2015-02-05T09:18:47 Merge pull request #2875 from JIghtuse/master for-each-ref example: initialize libgit2 in main
Boris Egorov 2107dac3 2015-02-04T15:14:18 for-each-ref example: init/shutdown libgit2 in main 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.
Edward Thomson 3983935b 2015-02-04T16:11:15 Merge pull request #2872 from ethomson/pedantic Fixes for pedantry
Edward Thomson a2e4593e 2015-02-03T18:41:40 hash_generic: __extension__ keyword for pedantry
Edward Thomson 0cd479ab 2015-02-04T09:24:49 Merge pull request #2874 from modocache/add-gift README.md: Add Swift bindings "Gift"
Carlos Martín Nieto 505d5b8a 2015-02-04T12:54:57 Merge pull request #2873 from ethomson/structinit structinit test: use %PRIuZ instead of %d for size_t
Brian Gesiak 35425b51 2015-02-04T01:06:07 README.md: Add Swift bindings "Gift"
Edward Thomson f45f9b6d 2015-02-04T03:52:34 structinit test: use %PRIuZ instead of %d for size_t
Edward Thomson f9e7abcb 2015-02-03T21:44:15 Merge pull request #2870 from urkud/log-libssh-not-found Tell user if libssh was not found
Edward Thomson 573a53a8 2015-02-03T21:19:21 Merge pull request #2861 from libgit2/ntk/appveyor AppVeyor: Prettify build script
Edward Thomson 07c989e9 2015-02-03T20:01:24 win32: further cleanups for 8.3 disabling
Edward Thomson 710f66af 2015-02-03T18:41:15 bswap: remove unused bswap
Yury G. Kudryashov e15a0849 2015-02-04T00:15:11 Tell user if libssh was not found Fixes #2665
Carlos Martín Nieto 471b10bd 2015-02-03T21:19:57 Merge pull request #2868 from ethomson/diff_doc diff docs: update `git_diff_delta` description
Edward Thomson 3538f8f1 2015-02-03T13:41:35 diff docs: update `git_diff_delta` description
Edward Thomson 5f28ec84 2015-02-03T12:16:11 win32: cleanup 8.3 disabled tests
nulltoken f4e3a6ab 2015-01-31T22:15:10 AppVeyor: Prettify build script
Edward Thomson f83c19c8 2015-01-30T14:16:45 Merge pull request #2832 from ethomson/appveyor_badge 64-bit Appveyor Builds
Carlos Martín Nieto 6e5a397c 2015-01-30T18:00:26 Merge pull request #2853 from swisspol/empty_doc Clarified git_repository_is_empty() documentation
Linquize 9dcc4a36 2015-01-28T23:04:50 Fix test failures when 8.3 is disabled
Pierre-Olivier Latour 9a294fd8 2015-01-27T08:17:23 Clarified git_repository_is_empty() documentation
Edward Thomson 1ac5acdc 2015-01-26T11:28:59 Merge pull request #2819 from libgit2/cmn/config-get-path config: add parsing and getter for paths
Edward Thomson 27242199 2015-01-26T11:27:09 Merge pull request #2837 from swisspol/set_index Allow passing a NULL index to git_repository_set_index()
Edward Thomson f483720c 2015-01-26T11:25:16 Merge pull request #2839 from swisspol/typo Fixed typo in git_repository_reinit_filesystem() documentation
Edward Thomson ff80b5e8 2015-01-26T11:24:47 Merge pull request #2847 from jacquesg/coverity More coverity fixes
Edward Thomson 9a09ed13 2015-01-26T11:21:04 Merge pull request #2840 from swisspol/sys_repository_include Make sure sys/repository.h includes the required headers
Edward Thomson 9f1ee63d 2015-01-26T11:20:00 Merge pull request #2841 from swisspol/set_bare Fixed git_repository_set_bare() not setting "core.bare" correctly
Edward Thomson 65bc22fa 2015-01-26T11:18:17 Merge pull request #2844 from rakuco/netinet-include-fixes openssl: Add all required includes for AF_INET6 and in6_addr.
Edward Thomson 645073b7 2015-01-26T10:56:40 Merge pull request #2848 from JIghtuse/describe_mem_fix describe example: fix memory allocation size
Carlos Martín Nieto f101a7d4 2015-01-26T17:29:15 Merge pull request #2846 from JIghtuse/master pathspec: do not try to dereference NULL
Boris Egorov 36e13399 2015-01-25T22:34:46 describe example: fix memory allocation size We need to allocate memory for sizeof(char *) * ncommits, not just for ncommits. Issue detected by GCC's AddressSanitizer.
Jacques Germishuys bb6aafe8 2015-01-25T14:40:23 Ensure the diff hunk callback is specified before trying to dereference it
Jacques Germishuys 636af219 2015-01-25T14:38:10 Return early if allocating a git_pathspec_match_list failed
Jacques Germishuys b63b3b0e 2015-01-25T14:08:05 Ensure git_index_entry is not NULL before trying to free it
Boris Egorov dc5fe00c 2015-01-25T00:07:23 pathspec: do not try to dereference NULL 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.
Raphael Kubo da Costa 3cda6be7 2015-01-24T16:19:43 openssl: Add all required includes for AF_INET6 and in6_addr. 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' ^
Pierre-Olivier Latour b2a7bcdb 2015-01-23T20:57:13 Fixed git_repository_set_bare() not setting "core.bare" correctly
Pierre-Olivier Latour 86815dca 2015-01-23T16:04:23 Make sure sys/repository.h includes the required headers It was missing "common.h" and "types.h" like other system headers. This generated compilation errors if including it directly.
Pierre-Olivier Latour 22b6a923 2015-01-23T15:59:54 Fixed typo in git_repository_reinit_filesystem() documentation
Pierre-Olivier Latour fa8ca519 2015-01-23T15:35:29 Allow passing a NULL index to git_repository_set_index() This is supported by the underlying set_index() implementation and setting the repository index to NULL is recommended by the git_repository_set_bare() documentation.
Edward Thomson 73c5db76 2015-01-22T19:00:16 Merge pull request #2834 from ethomson/memleak checkout: free last created directory
Edward Thomson 11888039 2015-01-23T00:18:42 checkout: free last created directory
Edward Thomson 7c48508b 2015-01-21T12:55:17 structinit test: only run on DEBUG builds The structinit tests don't make sense unless structure padding is uniformly initialized, which is unlikely to happen on release builds. Only enable them for DEBUG builds. Further, rename them to core::structinit.
Edward Thomson 0ad5c845 2015-01-18T00:47:59 structinit test: show which byte differs
Edward Thomson 1d67e8fd 2015-01-16T21:28:25 Windows CI: use 32 and 64 bit for AppVeyor builds Add 64 bit and always build with default calling conventions, to avoid trying to build with stdcall on amd64.
Edward Thomson a789b361 2015-01-21T09:20:54 Merge pull request #2829 from jacquesg/dead-code Remove logically dead code (we're already asserting)
Edward Thomson 68302ed2 2015-01-20T17:48:34 Merge pull request #2823 from ethomson/appveyor_badge README: Point to libgit2 account's AppVeyor badge
Edward Thomson e0902fbc 2015-01-15T17:17:01 checkout tests: cleanup realpath impl on Win32
Edward Thomson 53eb139d 2015-01-14T20:16:01 checkout tests: emulate p_realpath poorly on Win32
Edward Thomson e74340b0 2015-01-14T18:47:00 checkout: remove files before writing new ones 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 c2dee0fc 2015-01-14T13:20:21 checkout: drop newline in error message
Edward Thomson 232bc895 2015-01-14T13:15:34 checkout tests: nasty symlinks Symbolic links that abuse case insensitivity to write into .git.
Edward Thomson b4cbd67f 2015-01-13T13:02:58 checkout: don't recreate previous directory Don't bother trying to recreate the previously created directory during checkout, for a modest reduction in the number of stats.
Edward Thomson fe598f09 2015-01-13T11:18:02 mkdir: walk up tree to mkdir Walk up the tree to mkdir, which is less immediately efficient, but allows us to look at intermediate directories that may need attention.
Edward Thomson 1fbfcdfc 2015-01-12T15:48:53 git_path_join_unrooted: return base len 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 1d50b364 2015-01-12T16:16:27 checkout: introduce git_checkout_perfdata Checkout can now provide performance data about the number of (some) syscalls performed using an optional callback.
Edward Thomson 93b4a50d 2015-01-20T16:19:55 Merge pull request #2704
Linquize b4c6a9da 2014-10-26T05:45:23 Add files and tests with many UTF-8 chars and few UTF-8 chars
Sven Strickroth 0161e096 2014-11-13T19:30:47 Make binary detection work similar to vanilla git Main change: Don't treat chars > 128 as non-printable (common in UTF-8 files) Signed-off-by: Sven Strickroth <email@cs-ware.de>
Jacques Germishuys 9ae4ad2d 2015-01-20T23:26:55 Treat a NULL string as if it's empty
Jacques Germishuys 526182d2 2015-01-20T23:24:32 Remove logically dead code (we're already asserting)
Carlos Martín Nieto 2136240d 2015-01-20T20:13:34 Merge pull request #2828 from ethomson/treediff_dont_patch diff: only compute patches when requested
Edward Thomson 147d86fc 2015-01-20T12:31:24 diff: only compute patches when requested When we're called with no hunk or line callback, we don't need to do the hunk or line computation.
Edward Thomson 7cfbf3b7 2015-01-15T16:56:58 README: Point to libgit2 account's AppVeyor badge Microsoft is sponsoring a Pro account at AppVeyor for the libgit2 and LibGit2Sharp projects. Point to that account's badge.
Carlos Martín Nieto d5712ed2 2015-01-15T14:57:37 Merge pull request #2821 from maksqwe/strlen_optimization Remove strlen() calls from loop condition
Maks Naumov d8b5c8c3 2015-01-15T15:16:19 Remove strlen() calls from loop condition Avoid str length recalculation every iteration
Carlos Martín Nieto eac773d9 2015-01-14T15:05:43 config: add parsing and getter for paths
Edward Thomson 4d6f55ac 2015-01-14T10:26:26 CHANGELOG: include small file similarity detection
Edward Thomson a93acf91 2015-01-14T10:23:38 Merge pull request #2818 from leoyanggit/openssl_option Add option to turn off OpenSSL
Edward Thomson 85880693 2015-01-14T10:19:28 Merge branch 'pr/2740'
Pierre-Olivier Latour b3837d4d 2014-12-02T05:47:32 Always use GIT_HASHSIG_SMART_WHITESPACE when diffing for merges git_merge_tree_flag_t cannot contain any GIT_DIFF_FIND_xxx flags so there's not point in checking for them
Pierre-Olivier Latour 36fc5497 2014-12-02T05:11:12 Added GIT_HASHSIG_ALLOW_SMALL_FILES to allow computing signatures for small files The implementation of the hashsig API disallows computing a signature on small files containing only a few lines. This new flag disables this behavior. git_diff_find_similar() sets this flag by default which means that rename / copy detection of small files will now work. This in turn affects the behavior of the git_status and git_blame APIs which will now detect rename of small files assuming the right options are passed.
Leo Yang 7641327c 2015-01-13T16:53:07 Add option to turn off OpenSSL
nulltoken e6911dff 2015-01-13T20:35:08 Merge pull request #2817 from PeterDaveHello/patch-1 Use svg instead of png to get better image quality
Carlos Martín Nieto 16bcf0c7 2015-01-13T19:29:00 Pre-fill the changelog with the subheadings
Peter Dave Hello c5c8ece1 2015-01-14T02:14:38 Use svg instead of png to get better image quality
Carlos Martín Nieto 04bdd97f 2015-01-12T08:59:46 Merge pull request #2815 from ethomson/example clone example: don't divide by zero
Edward Thomson 9af3c416 2015-01-10T18:05:01 clone example: don't divide by zero Local transports don't have data about the size, avoid dividing by zero in the callback.
Carlos Martín Nieto b91f28be 2015-01-10T00:49:20 Reformat the changelog 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 d4b24101 2015-01-09T16:47:48 Merge commit '4b1018d24f980273528743c27c47ceb96cb720bd' Fix crash in free() when git_buf_grow() fails.
Jeff Hostetler 4b1018d2 2015-01-08T17:24:12 Fix crash in free() when git_buf_grow() fails.
Carlos Martín Nieto fe8399fe 2015-01-09T16:29:08 Fix warning
Carlos Martín Nieto 788c5f1c 2015-01-09T10:23:08 Merge pull request #2810 from ethomson/remove_symlinks Remove symlinks from the repository
Edward Thomson aebdbcd9 2015-01-08T17:27:58 Merge pull request #2811 from ethomson/remote_leak remote: plug leak
Edward Thomson 365d3672 2015-01-08T21:32:44 submodule::init tests: free some leaks
Edward Thomson a8846da7 2015-01-08T13:45:22 remote: plug leak
Edward Thomson 3b40ed89 2015-01-08T19:23:37 repo::init test: create hook symlink 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 1646412d 2015-01-08T11:20:44 Merge pull request #2802 from calavera/remote_create_prune_config Load prune configuration when a remote is created.
David Calavera de4a75f9 2015-01-07T09:26:36 Fix more indentation.
David Calavera c868981f 2015-01-06T13:49:39 Add extern function to initialize submodule update options.
Carlos Martín Nieto 6a6c24e0 2015-01-07T11:54:08 Merge pull request #2806 from ethomson/changelog CHANGELOG: we've added git_describe
Edward Thomson 2ce37794 2015-01-06T18:34:55 Merge pull request #2805 from ethomson/msvc submodule: declare vars at top of func block
Edward Thomson 9b22f8b4 2015-01-06T18:34:43 Merge pull request #2803 from ethomson/appveyor Add appveyor yaml
Edward Thomson 61cd037e 2015-01-06T17:18:57 CHANGELOG: we've added git_describe