summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * | submodule: cast enum to int for compareEdward Thomson2015-06-291-1/+1
| | |
| * | openssl: free hostnameEdward Thomson2015-06-291-0/+1
| | |
| * | stash: drop unused variableEdward Thomson2015-06-291-2/+1
| | |
| * | iterator_walk: drop unused variableEdward Thomson2015-06-291-5/+0
| | |
* | | http: don't give up on auth on the first trycmn/release-fixupsCarlos Martín Nieto2015-06-291-2/+1
| | | | | | | | | | | | | | | When the server rejects an authentication request, ask the caller for the credentials again, instead of giving up on the first try.
* | | submodule: remove trailing slashes from submodule pathsCarlos Martín Nieto2015-06-291-4/+12
| | | | | | | | | | | | | | | We allow looking up a submodule by path, but we lost the path normalisation during the recent changes. Bring it back.
* | | submodule: remove some obsolete logicCarlos Martín Nieto2015-06-291-19/+0
|/ / | | | | | | | | Remove some of the logic that was left-over from the time we had a cache of submodules, plugging a leak of the submodule object in certain cases.
* | Merge pull request #3265 from libgit2/leaksCarlos Martín Nieto2015-06-273-1/+15
|\ \ | | | | | | Plug a bunch of leaks
| * | index, iterator, fetchhead: plug leaksleaksCarlos Martín Nieto2015-06-261-0/+3
| | |
| * | diff: fix leaks in diff printingCarlos Martín Nieto2015-06-262-1/+12
| | |
* | | Merge pull request #3263 from git-up/fixesCarlos Martín Nieto2015-06-262-2/+2
|\ \ \ | |/ / |/| | Fixes
| * | Fixed build failure if GIT_CURL is not definedPierre-Olivier Latour2015-06-262-2/+2
| |/
* | Merge pull request #3259 from ethomson/stash_apply_arghCarlos Martín Nieto2015-06-264-86/+237
|\ \ | | | | | | Stash apply: stage new files even when not updating the index
| * | stash: stage new files when unstashing themEdward Thomson2015-06-251-0/+78
| | | | | | | | | | | | | | | Files that were new (staged additions) in the stash tree should be staged when unstashing, even when not applying the index.
| * | iterator: provide git_iterator_walkEdward Thomson2015-06-253-86/+133
| | | | | | | | | | | | | | | Provide `git_iterator_walk` to walk each iterator in lockstep, returning each iterator's idea of the contents of the next path.
| * | stash: don't allow apply with staged changesEdward Thomson2015-06-251-0/+26
| | |
* | | Revert "object: correct the expected ID size in prefix lookup"Vicent Marti2015-06-261-5/+5
| |/ |/| | | | | | | | | | | | | | | | | | | | | This reverts commit 969d4b703c910a8fd045baafbcd243b4c9825316. This was a fluke from Coverity. The length to all the APIs in the library is supposed to be passed in as nibbles, not bytes. Passing it as bytes would prevent us from parsing uneven-sized SHA1 strings. Also, the rest of the library was still using nibbles (including revparse and the odb_prefix APIs), so this change was seriously breaking things in unexpected ways. ^^
* | Only write index if updated when passing GIT_DIFF_UPDATE_INDEXPierre-Olivier Latour2015-06-262-2/+5
| | | | | | | | | | | | When diffing the index with the workdir and GIT_DIFF_UPDATE_INDEX has been passed, the previous implementation was always writing the index to disk even if it wasn't modified.
* | Merge pull request #3255 from libgit2/cmn/rename-unspecifiedEdward Thomson2015-06-255-7/+7
|\ \ | |/ |/| Rename FALLBACK to UNSPECIFIED
| * Rename FALLBACK to UNSPECIFIEDcmn/rename-unspecifiedCarlos Martín Nieto2015-06-255-7/+7
| | | | | | | | | | Fallback describes the mechanism, while unspecified explains what the user is thinking.
* | Merge pull request #3256 from libgit2/cmn/fetch-spec-fetchheadEdward Thomson2015-06-251-3/+14
|\ \ | | | | | | remote: insert refspecs with no rhs in FETCH_HEAD
| * | remote: insert refspecs with no rhs in FETCH_HEADcmn/fetch-spec-fetchheadCarlos Martín Nieto2015-06-251-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | When a refspec contains no rhs and thus won't cause an explicit update, we skip all the logic, but that means that we don't update FETCH_HEAD with it, which is what the implicit rhs is. Add another bit of logic which puts those remote heads in the list of updates so we put them into FETCH_HEAD.
* | | Merge pull request #3246 from libgit2/cmn/dont-grow-borrowedEdward Thomson2015-06-253-9/+11
|\ \ \ | |_|/ |/| | Don't allow growing borrowed buffers
| * | buffer: make use of EINVALID for growing a borrowed bufferCarlos Martín Nieto2015-06-241-2/+4
| | | | | | | | | | | | | | | This explains more closely what happens. While here, set an error message.
| * | buffer: don't allow growing borrowed buffersCarlos Martín Nieto2015-06-243-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we don't own a buffer (asize=0) we currently allow the usage of grow to copy the memory into a buffer we do own. This muddles the meaning of grow, and lets us be a bit cavalier with ownership semantics. Don't allow this any more. Usage of grow should be restricted to buffers which we know own their own memory. If unsure, we must not attempt to modify it.
* | | Merge pull request #3097 from libgit2/cmn/submodule-config-stateCarlos Martín Nieto2015-06-248-680/+421
|\ \ \ | | | | | | | | Remove run-time configuration settings from submodules
| * | | submodule: handle writing out all enum values for settingsCarlos Martín Nieto2015-06-222-65/+21
| | | | | | | | | | | | | | | | | | | | | | | | We currently do not handle those enum values which require us to set "true" or unset variables in all cases. Use a common function which does understand this by looking at our mapping directly.
| * | | config: provide a function to reverse-lookup mapped cvarsCarlos Martín Nieto2015-06-222-0/+26
| | | |
| * | | submodule: get rid of `_save()`Carlos Martín Nieto2015-06-221-38/+0
| | | | | | | | | | | | | | | | | | | | We no longer have any setters which affect an instance, so `git_submodule_save()` is no longer relevant.
| * | | submodule: make `_set_url()` affect the configurationCarlos Martín Nieto2015-06-221-12/+3
| | | | | | | | | | | | | | | | With this one, we can get rid of the edit_and_save test.
| * | | submodule: make `_set_branch()` affect the configurationCarlos Martín Nieto2015-06-221-48/+28
| | | |
| * | | submodule: make `_set_update_fetch_recurse_submodules()` affect the configCarlos Martín Nieto2015-06-221-18/+26
| | | | | | | | | | | | | | | | | | | | | | | | Similarly to the other ones. In this test we copy over testing `RECURSE_YES` which shows an error in our handling of the `YES` variant which we may have to port to the rest.
| * | | submodule: make `_set_update()` affect the configurationCarlos Martín Nieto2015-06-221-24/+28
| | | | | | | | | | | | | | | | | | | | Moving on with the removal of runtime-changing variables, the update setting for a remote is whatever it was when it was looked up.
| * | | submodule: correct detection of existing submodulesCarlos Martín Nieto2015-06-221-10/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During the cache deletion, the check for whether we consider a submodule to exist got changed regarding submodules which are in the worktree but not configured. Instead of checking for the url field to be populated, check the location where we've found it.
| * | | submodule: bring back finding by pathCarlos Martín Nieto2015-06-221-0/+42
| | | | | | | | | | | | | | | | | | | | During the removal of the cache, we also removed the ability to use `_lookup()` to search by path rather than name. Bring this logic back.
| * | | submodule: add an ignore option to statusCarlos Martín Nieto2015-06-223-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This lets us specify in the status call which ignore rules we want to use (optionally falling back to whatever the submodule has in its configuration). This removes one of the reasons for having `_set_ignore()` set the value in-memory. We re-use the `IGNORE_RESET` value for this as it is no longer relevant but has a similar purpose to `IGNORE_FALLBACK`. Similarly, we remove `IGNORE_DEFAULT` which does not have use outside of initializers and move that to fall back to the configuration as well.
| * | | submodule: don't let status change an existing instanceCarlos Martín Nieto2015-06-223-6/+15
| | | | | | | | | | | | | | | | | | | | | | | | As submodules are becomes more like values, we should not let a status check to update its properties. Instead of taking a submodule, have status take a repo and submodule name.
| * | | submodule: make set_ignore() affect the configurationCarlos Martín Nieto2015-06-221-15/+22
| | | | | | | | | | | | | | | | | | | | Instead of affecting a particular instance, make it change the configuration.
| * | | submodule: remove the per-repo cacheCarlos Martín Nieto2015-06-225-530/+270
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having this cache and giving them out goes against our multithreading guarantees and it makes it impossible to use submodules in a multi-threaded environment, as any thread can ask for a refresh which may reallocate some string in the submodule struct which we've accessed in a different one via a getter. This makes the submodules behave more like remotes, where each object is created upon request and not shared except explicitly by the user. This means that some tests won't pass yet, as they assume they can affect the submodule objects in the cache and that will affect later operations.
* | | | Merge pull request #3183 from libgit2/cmn/curl-streamCarlos Martín Nieto2015-06-246-14/+430
|\ \ \ \ | | | | | | | | | | Implement a cURL stream
| * | | | SecureTransport: use the curl stream if availablecmn/curl-streamCarlos Martín Nieto2015-06-241-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the libcurl stream is available, use that as the underlying stream instead of the socket stream. This allows us to set a proxy for HTTPS connections.
| * | | | curl: remove the encrypted param to the constructorCarlos Martín Nieto2015-06-244-14/+6
| | | | | | | | | | | | | | | | | | | | | | | | | We do not want libcurl to perform the TLS negotiation for us, so we don't need to pass this option.
| * | | | http: ask for the curl stream for non-encrypted connectionsCarlos Martín Nieto2015-06-241-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The TLS streams talk over the curl stream themselves, so we don't need to ask for it explicitly. Do so in the case of the non-encrypted one so we can still make use proxies in that case.
| * | | | openssl: use the curl stream if availableCarlos Martín Nieto2015-06-241-12/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When linking against libcurl, use it as the underlying transport instead of straight sockets. We can't quite just give over the file descriptor, as curl puts it into non-blocking mode, so we build a custom BIO so OpenSSL sends the data through our stream, be it the socket or curl streams.
| * | | | curl: extract certificate informationCarlos Martín Nieto2015-06-241-3/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The information is exposed by curl for some crypto libraries in the form of name:content strings. We can't do much more than return this information.
| * | | | http: set the proxy if the stream supports itCarlos Martín Nieto2015-06-241-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | Of the built-in ones, only cURL support it, but there's no reason a user-provided stream wouldn't support it.
| * | | | stream: add support for setting a proxyCarlos Martín Nieto2015-06-242-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the stream claims to support this feature, we can let the transport set the proxy. We also set HTTPPROXYTUNNEL option so curl can create a tunnel through the proxy which lets us create our own TLS session (if needed).
| * | | | Implement a curl streamCarlos Martín Nieto2015-06-243-1/+239
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cURL has a mode in which it acts a lot like our streams, providing send and recv functions and taking care of the TLS and proxy setup for us. Implement a new stream which uses libcurl instead of raw sockets or the TLS libraries directly. This version does not support reporting certificates or proxies yet.
* | | | Merge pull request #3254 from ethomson/diff-binary-patchCarlos Martín Nieto2015-06-242-12/+32
|\ \ \ \ | | | | | | | | | | Handle binary DIFFABLEness properly
| * | | | diff: determine DIFFABLE-ness for binariesEdward Thomson2015-06-242-12/+32
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Always set `GIT_DIFF_PATCH_DIFFABLE` for all files, regardless of binary-ness, so that the binary callback is invoked to either show the binary contents, or just print the standard "Binary files differ" message. We may need to do deeper inspection for binary files where we have avoided loading the contents into a file map.