- Dec 31, 2014
-
-
Pierre-Olivier Latour authored
-
Edward Thomson authored
Remote-tracking branch prunning
-
Edward Thomson authored
remote: remove git_push from the public API
-
Carlos Martín Nieto authored
-
Carlos Martín Nieto authored
Instead we provide git_remote_upload() and git_remote_update_tips() in order to have a parallel API for fetching and pushing.
-
Carlos Martín Nieto authored
Coverity fixes
-
- Dec 30, 2014
-
-
Jacques Germishuys authored
-
Jacques Germishuys authored
-
Jacques Germishuys authored
-
Edward Thomson authored
Undef stat for Mingw
-
Jacques Germishuys authored
-
Jacques Germishuys authored
-
- Dec 29, 2014
-
-
Edward Thomson authored
treebuilder: rename _create() to _new()
-
Edward Thomson authored
Added git__timer() variant for AmigaOS.
-
- Dec 28, 2014
-
-
Sebastian Bauer authored
The clock_gettime() function is normally not available under AmigaOS, hence another solution is required. We are using now GetUpTime() that is present in current versions of this operating system.
-
- Dec 27, 2014
-
-
Carlos Martín Nieto authored
This function is a constructor, so let's name it like one and leave _create() for the reference functions, which do create/write the reference.
-
Carlos Martín Nieto authored
-
- Dec 24, 2014
-
-
Carlos Martín Nieto authored
Case changing rename
-
Carlos Martín Nieto authored
don't treat 0x85 as whitespace
-
Carlos Martín Nieto authored
global: include sys/openssl.h for GIT_EXPORT of fn
-
Edward Thomson authored
The openssl setup function needs to be GIT_EXPORT'ed, be sure to include the `sys/openssl.h` header so that it is appropriately decorated as an export function.
-
Edward Thomson authored
A byte value of 0x85 is not whitespace, we were conflating that with U+0085 (UTF8: 0xc2 0x85). This caused us to incorrectly treat valid multibyte characters like U+88C5 (UTF8: 0xe8 0xa3 0x85) as whitespace.
-
Edward Thomson authored
On a case-insensitive filesystem, we need to deal with case-changing renames (eg, foo -> FOO) by removing the old and adding the new, exactly as if we were on a case-sensitive filesystem. Update the `checkout::tree::can_cancel_checkout_from_notify` test, now that notifications are always sent case sensitively.
-
Edward Thomson authored
-
- Dec 23, 2014
-
-
Carlos Martín Nieto authored
index: reuc and name entrycounts should be size_t
-
Edward Thomson authored
For the REUC and NAME entries, we use size_t internally, and we take size_t for the get_byindex() functions, but the entrycount() functions strangely cast to an unsigned int instead.
-
Edward Thomson authored
cmake: include FindPkgConfig for windows
-
Edward Thomson authored
Apparently FindPkgConfig is not included by default on VS builds, only Unix and Unix-like (mingw) builds.
-
Edward Thomson authored
Find libssh2 via pkg-config
-
- Dec 21, 2014
-
-
Edward Thomson authored
Make OpenSSL locking warnings more severe
-
Edward Thomson authored
Mention the init function in the README
-
Edward Thomson authored
Show progress output on fetch for the local transport
-
Edward Thomson authored
More Windows Path checking
-
- Dec 20, 2014
-
-
Carlos Martín Nieto authored
Fix public header on sys/refs.h
-
- Dec 19, 2014
-
-
Linquize authored
-
Linquize authored
-
Damien PROFETA authored
GIT_BEGIN/END_DECL were missing from sys/refs.h and preventing compilation with g++ as the symbol were mangled.
-
Carlos Martín Nieto authored
We need to know what wchar_t and MAX_PATH are. Including common.h takes care of that for us.
-
Edward Thomson authored
-
Vicent Marti authored
-