| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 |
| | | | |||||
| | * | Skip "user@" when finding hostname in url | Ben Straub | 2013-01-30 | 1 | -2/+6 |
| | | | |||||
| * | | revparse: Lookup sha before branch | nulltoken | 2013-02-03 | 1 | -6/+29 |
| | | | |||||
| * | | revparse: Lookup branch before described tag | nulltoken | 2013-02-03 | 1 | -7/+7 |
| | | | | | | | | | Fix #1306 | ||||
| * | | Merge pull request #1303 from csware/win32_consistent_error_encoding | Vicent Martí | 2013-02-01 | 5 | -21/+68 |
| |\ \ | | | | | | | Win32: Make sure error messages are consistently UTF-8 encoded | ||||
| | * | | Deduplicate FormatMessage UTF-16 to UTF-8 conversion code | Sven Strickroth | 2013-02-02 | 5 | -47/+66 |
| | | | | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| | * | | Improved error handling | Sven Strickroth | 2013-02-02 | 2 | -4/+19 |
| | | | | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| | * | | Get utf8_size from WideCharToMultiByte instead of guessing it | Sven Strickroth | 2013-02-01 | 2 | -6/+6 |
| | | | | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| | * | | Win32: Make sure error messages are consistently UTF-8 encoded | Sven Strickroth | 2013-02-01 | 2 | -11/+24 |
| | | | | | | | | | | | | | | | | | | | | | | | | | W/o this a libgit2 error message could have a mixed encoding: e.g. a filename in UTF-8 combined with a native Windows error message encoded with the local code page. Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| * | | | Merge pull request #1299 from csware/support_local_msysgit_install | Vicent Martí | 2013-02-01 | 2 | -22/+30 |
| |\ \ \ | | | | | | | | | Support local msysgit installations | ||||
| | * | | | Stick to coding style: Move up braces | Sven Strickroth | 2013-02-01 | 1 | -6/+3 |
| | | | | | | | | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| | * | | | Detect msysgit installation of users without admin rights | Sven Strickroth | 2013-01-31 | 1 | -4/+7 |
| | | | | | | | | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| | * | | | Refactored: Move msysgit registry detection to it's own function | Sven Strickroth | 2013-01-31 | 2 | -17/+25 |
| | |/ / | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| * | | | Try harder to find global config file | Jameson Miller | 2013-02-01 | 1 | -6/+0 |
| | | | | |||||
| * | | | Merge pull request #1286 from lznuaa/master | Ben Straub | 2013-02-01 | 1 | -2/+4 |
| |\ \ \ | | | | | | | | | Fix clone fail if repo head detached | ||||
| | * | | | Fix fail clone local repo which head detatched | Frank Li | 2013-01-27 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Set head detach if can't found branch after download Signed-off-by: Frank Li <lznuaa@gmail.com> | ||||
