- 16 Jun, 2015 4 commits
-
-
commit: ignore multiple author fields
Edward Thomson committed -
remote: return EINVALIDSPEC when given an empty URL
Edward Thomson committed -
This is what we used to return in the settter and there's tests in bindings which ask for this. There's no particular reason to stop doing so.
Carlos Martín Nieto committed -
Fixed Xcode 6.1 build warnings
Carlos Martín Nieto committed
-
- 15 Jun, 2015 8 commits
-
-
Fix visibility of transaction symbol
Edward Thomson committed -
Pierre-Olivier Latour committed
-
path: remove unnecessary readdir_r usage
Edward Thomson committed -
Arguably all uses of readdir_r are unnecessary, but in this case especially so, as the directory handle only exists within this function, so we don't race with anybody.
Carlos Martín Nieto committed -
clone: fall back to copying when linking does not work
Carlos Martín Nieto committed -
Fix in stransport_stream.c for usage of SecCopyErrorMessageString(), which is unavailable to iOS targets.
Logan Collins committed -
Binary diffs: store deltas in the diff structure, include binary data in diff callbacks
Carlos Martín Nieto committed -
Fix leaks in tests/checkout/icase
Carlos Martín Nieto committed
-
- 12 Jun, 2015 15 commits
-
-
Fix memory leak on windows in diriter.
Carlos Martín Nieto committed -
Jeff Hostetler committed
-
Transaction.c did not include the visibility definition of its symbol (that are in git2/transaction.h) and so was by default hidden.
Damien PROFETA committed -
Jeff Hostetler committed
-
Edward Thomson committed
-
Edward Thomson committed
-
Edward Thomson committed
-
Introduce a new binary diff callback to provide the actual binary delta contents to callers. Create this data from the diff contents (instead of directly from the ODB) to support binary diffs including the workdir, not just things coming out of the ODB.
Edward Thomson committed -
Edward Thomson committed
-
Fixed some Secure Transport issues on OS X
Carlos Martín Nieto committed -
travis: fail if we fail the push tests
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
We need to pass these options in order to have the credentials callback set.
Carlos Martín Nieto committed -
These tests were not being taken into consideration for the failure of the test. They've been failing for a while now, but we hadn't noticed as Travis was reporting the builds successful.
Carlos Martín Nieto committed -
The read and write callbacks passed to SSLSetIOFuncs() have been rewritten to match the implementation used on opensource.apple.com and other open source projects like VLC. This change also fixes a bug where the read callback could get into an infinite loop when 0 bytes were read.
Pierre-Olivier Latour committed
-
- 11 Jun, 2015 4 commits
-
-
cred_helpers: Add 'const' qualifiers to git_cred_userpass_payload
Carlos Martín Nieto committed -
Some tools create multiple author fields. git is rather lax when parsing them, although fsck does complain about them. This means that they exist in the wild. As it's not too taxing to check for them, and there shouldn't be a noticeable slowdown when dealing with correct commits, add logic to skip over these extra fields when parsing the commit.
Carlos Martín Nieto committed -
Introduce `git_filter_list_contains`
Carlos Martín Nieto committed -
Correct line endings on winhttp.def
Carlos Martín Nieto committed
-
- 10 Jun, 2015 9 commits
-
-
indexer: use lseek to extend the packfile
Edward Thomson committed -
Fixed handling of GIT_DELTA_CONFLICTED in git_diff_find_similar()
Edward Thomson committed -
Edward Thomson committed
-
`git_filter_list_contains` can be used to query a filter list to determine if a given filter will be run.
Edward Thomson committed -
gitattributes: let clients use native line endings
Carlos Martín Nieto committed -
git_diff_find_similar() now ignores git_diff_delta records with a status of GIT_DELTA_CONFLICTED, which fixes a crash due to assert() being hit.
Pierre-Olivier Latour committed -
Use "text=auto" to ensure that we get LFs in the repository, but let clients have their native line endings in their worktree.
Edward Thomson committed -
A few more fixes from coverity
Edward Thomson committed -
When we hit an error writing to the next stream from a file, we jump to 'done' which currently skips over closing the file descriptor. Make sure to close the descriptor if it has been set to a valid value.
Carlos Martín Nieto committed
-