Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | signature: Small cleanupsignatures-2 | Vicent Marti | 2013-02-20 | 1 | -3/+2 |
| | |||||
* | signature: Shut up MSVC, you silly goose | Vicent Marti | 2013-02-20 | 2 | -6/+18 |
| | |||||
* | Simplify signature parsing | Vicent Marti | 2013-02-20 | 1 | -191/+63 |
| | |||||
* | Fix a leak when canceling a network operation | Ben Straub | 2013-02-14 | 1 | -2/+3 |
| | |||||
* | Fix a git_filebuf leak (fixes Win32 clone::can_cancel) | Philip Kelley | 2013-02-14 | 1 | -13/+14 |
| | |||||
* | Change git2.rc to identify git.dll as VOS_NT_WINDOWS32 | Philip Kelley | 2013-02-13 | 1 | -1/+1 |
| | |||||
* | Merge pull request #1333 from phkelley/push_options | Ben Straub | 2013-02-12 | 3 | -2/+29 |
|\ | | | | | Add git_push_options, to set packbuilder parallelism | ||||
| * | Add git_push_options, to set packbuilder parallelism | Philip Kelley | 2013-02-11 | 3 | -2/+29 |
| | | |||||
* | | Merge pull request #1246 from arrbee/fix-force-text-for-diff-blobs | Russell Belfer | 2013-02-12 | 1 | -11/+28 |
|\ \ | | | | | | | Add FORCE_TEXT check into git_diff_blobs code path | ||||
| * | | Reorganize FORCE_TEXT diff flag checks | Russell Belfer | 2013-02-11 | 1 | -14/+24 |
| | | | |||||
| * | | Add FORCE_TEXT check into git_diff_blobs code path | Russell Belfer | 2013-02-11 | 1 | -3/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | `git_diff_blobs` and `git_diff_blob_to_buffer` skip the step where we check file attributes because they don't have a filename associated with the data. Unfortunately, this meant they were also skipping the check for the GIT_DIFF_FORCE_TEXT option and so you could not force a diff of an apparent binary file. This adds the force text check into their code path. | ||||
* | | | Merge pull request #1316 from ben/clone-cancel | Russell Belfer | 2013-02-12 | 3 | -9/+12 |
|\ \ \ | |/ / |/| | | Allow network operations to cancel | ||||
| * | | Expect standard error code from internal calls | Ben Straub | 2013-02-06 | 1 | -1/+1 |
| | | | |||||
| * | | Allow all non-zero returns to cancel transfers | Ben Straub | 2013-02-05 | 2 | -2/+2 |
| | | | |||||
| * | | Allow progress callback to cancel fetch | Ben Straub | 2013-02-05 | 3 | -9/+12 |
| | | | | | | | | | | | | | | | This works by having the indexer watch the return code of the callback, so will only take effect on object boundaries. | ||||
* | | | remote: Introduce git_remote_is_valid_name() | nulltoken | 2013-02-11 | 2 | -19/+26 |
| | | | | | | | | | | | | Fix libgit2/libgit2sharp#318 | ||||
* | | | refs: No component of a refname can end with '.lock' | nulltoken | 2013-02-11 | 1 | -4/+6 |
| | | | |||||
* | | | Merge pull request #1190 from nulltoken/topic/reset-paths | Russell Belfer | 2013-02-11 | 6 | -6/+80 |
|\ \ \ | | | | | | | | | reset: Allow the selective reset of pathspecs | ||||
| * | | | Fix MSVC compilation warnings | nulltoken | 2013-02-05 | 4 | -5/+5 |
| | | | | | | | | | | | | | | | | Fix #1308 | ||||
| * | | | reset: Introduce git_reset_default() | nulltoken | 2013-02-05 | 1 | -0/+74 |
| | | | | |||||
| * | | | index: Fix indentations | nulltoken | 2013-02-05 | 1 | -1/+1 |
| |/ / | |||||
* | | | Merge pull request #1323 from jamill/resolve_remote | Philip Kelley | 2013-02-11 | 2 | -6/+105 |
|\ \ \ | |_|/ |/| | | Resolve a remote branch's remote | ||||
| * | | Teach refspec to transform destination reference to source reference | Jameson Miller | 2013-02-11 | 1 | -7/+17 |
| | | | |||||
| * | | Teach remote branch to return its remote | Jameson Miller | 2013-02-11 | 2 | -0/+89 |
| | | | |||||
* | | | Fix some incorrect MSVC #ifdef's. Fixes #1305 | Philip Kelley | 2013-02-11 | 1 | -1/+1 |
| | | | |||||
* | | | Fix a bug introduced in df93a681 'Merge the push...' | Philip Kelley | 2013-02-10 | 1 | -1/+3 |
| | | | |||||
* | | | Fix -Wmaybe-uninitialized warning | Michael Schubert | 2013-02-10 | 1 | -1/+1 |
| | | | |||||
* | | | Merge the push report into the refs to avoid a 3rd network call | Philip Kelley | 2013-02-08 | 4 | -20/+130 |
|/ / | |||||
* | | Fix Windows symlinks | Jameson Miller | 2013-02-08 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #1249 from yorah/topic/diff-notify-unmatched-pathspecs | Russell Belfer | 2013-02-08 | 5 | -19/+65 |
|\ \ | | | | | | | diff: Add a callback to notify of diffed files | ||||
| * | | diff: add a notify callback to `git_diff__from_iterators` | yorah | 2013-02-07 | 1 | -10/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The callback will be called for each file, just before the `git_delta_t` gets inserted into the diff list. When the callback: - returns < 0, the diff process will be aborted - returns > 0, the delta will not be inserted into the diff list, but the diff process continues - returns 0, the delta is inserted into the diff list, and the diff process continues | ||||
| * | | Return the matched pathspec pattern in `git_pathspec_match_path` | yorah | 2013-02-07 | 5 | -9/+31 |
| | | | | | | | | | | | | | | | | | | | | | Instead of returning directly the pattern as the return value, I used an out parameter, because the function also tests if the passed pathspecs vector is empty. If yes, it considers that the path "matches", but in that case there is no matched pattern per se. | ||||
* | | | Merge pull request #1325 from SHyx0rmZ/fix-windows-symlinks | Vicent Martà | 2013-02-08 | 1 | -3/+18 |
|\ \ \ | |/ / |/| | | Fix Windows symlinks | ||||
| * | | Moved braces to conform to code style | Patrick Pokatilo | 2013-02-08 | 1 | -2/+1 |
| | | | |||||
| * | | Replace LoadLibrary with GetModuleHandle, since kernel32 is loaded by default | Patrick Pokatilo | 2013-02-08 | 1 | -3/+3 |
| | | | | | | | | | | | | As requested | ||||
| * | | Replace call to strnlen with call to strlen | Patrick Pokatilo | 2013-02-08 | 1 | -6/+5 |
| | | | |||||
| * | | Include <string.h> | Patrick Pokatilo | 2013-02-08 | 1 | -0/+1 |
| | | | |||||
| * | | Fix call to readlink | Patrick Pokatilo | 2013-02-08 | 1 | -1/+4 |
| | | | |||||
| * | | Call p_readlink to determine symlink size | Patrick Pokatilo | 2013-02-07 | 1 | -0/+13 |
| |/ | |||||
* | | Clone: fetch all tags | Ben Straub | 2013-02-06 | 1 | -0/+1 |
|/ | |||||
* | Merge pull request #1298 from ben/user-at | Russell Belfer | 2013-02-04 | 7 | -21/+140 |
|\ | | | | | Handle "user@" prefix for credentials partially included in URLs | ||||
| * | Address feedback | Ben Straub | 2013-02-04 | 2 | -8/+12 |
| | | |||||
| * | Use malloc rather than calloc | Ben Straub | 2013-02-01 | 1 | -1/+2 |
| | | |||||
| * | Introduce git__substrdup | Ben Straub | 2013-02-01 | 2 | -10/+14 |
| | | |||||
| * | Remove double-free segfaults | Ben Straub | 2013-01-31 | 1 | -6/+6 |
| | | |||||
| * | WinHttp: use cred in url if provided | Ben Straub | 2013-01-31 | 1 | -3/+16 |
| | | |||||
| * | HTTP: use creds in url if available | Ben Straub | 2013-01-31 | 2 | -0/+19 |
| | | |||||
| * | Enhance url parsing to include passwords | Ben Straub | 2013-01-31 | 5 | -18/+66 |
| | | |||||
| * | Add user-from-url param to auth callback | Ben Straub | 2013-01-31 | 2 | -2/+20 |
| | | |||||
| * | Stash username from url (but don't use it yet) | Ben Straub | 2013-01-30 | 5 | -9/+17 |
| | |