summaryrefslogtreecommitdiff
path: root/include/git2/remote.h
Commit message (Collapse)AuthorAgeFilesLines
* Improvements to git_transport extensibilityPhilip Kelley2014-06-261-8/+7
| | | | | git_remote_set_transport now takes a transport factory rather than a transport git_clone_options now allows the caller to specify a remote creation callback
* remote: fix rename docsCarlos Martín Nieto2014-06-091-3/+0
|
* remote: don't free the remote on deletecmn/remote-rename-moreCarlos Martín Nieto2014-06-061-2/+0
| | | | This was a bad idea. Don't free except in the free function.
* remote: return problem refspecs instead of using a callbackCarlos Martín Nieto2014-06-061-3/+5
| | | | | | There is no reason why we need to use a callback here. A string array fits better with the usage, as this is not an event and we don't need anything from the user.
* remote: add api to guess the remote's default branchCarlos Martín Nieto2014-05-211-0/+18
| | | | | If the remote supports the symref protocol extension, then we return that, otherwise we guess with git's rules.
* Merge pull request #2313 from libgit2/cmn/remote-deleteVicent Marti2014-05-161-0/+13
|\ | | | | Remote deletion
| * remote: Introduce git_remote_delete()nulltoken2014-04-301-0/+13
| |
* | Fix remaining init_options inconsistenciesRussell Belfer2014-05-021-5/+4
|/ | | | | There were a couple of "init_opts()" functions a few more cases of structure initialization that I somehow missed.
* Merge pull request #2284 from jacquesg/push-progress-callbackVicent Marti2014-04-251-3/+3
|\ | | | | Fire progress and update tips callbacks also for pushes.
| * Don't redefine the same callback types, their signatures may changeJacques Germishuys2014-04-211-3/+3
| |
| * Rename progress callback to sideband_progressJacques Germishuys2014-04-211-1/+1
| |
| * Check the return codes of remote callbacks.Jacques Germishuys2014-04-211-2/+1
| | | | | | | | The user may have requested that the operation be cancelled.
| * Fire progress callbacks also for pushes.Jacques Germishuys2014-04-201-1/+2
| | | | | | | | | | It's not very useful to only know that a pre-receive hook has declined a push, you probably want to know why.
* | transports: allow the creds callback to say it doesn't existCarlos Martín Nieto2014-04-221-0/+3
| | | | | | | | | | | | | | | | Allow the credentials callback to return GIT_PASSTHROUGH to make the transports code behave as though none was set. This should make it easier for bindings to behave closer to the C code when there is no credentials callback set at their level.
* | remote: provide read access to the callback structureCarlos Martín Nieto2014-04-221-0/+11
|/ | | | | This should make it easier for bindings to dynamically override their own callbacks.
* remote: rename inmemory to anonymous and swap url and fetch orderCarlos Martín Nieto2014-04-011-7/+7
| | | | | | | | | | The order in this function is the opposite to what create_with_fetchspec() has, so change this one, as url-then-refspec is what git does. As we need to break compilation and the swap doesn't do that, let's take this opportunity to rename in-memory remotes to anonymous as that's really what sets them apart.
* Added function-based initializers for every options struct.Matthew Bowen2014-03-051-0/+13
| | | | The basic structure of each function is courtesy of arrbee.
* Correct default reflog message for git_remote_fetchBen Straub2014-02-061-1/+2
|
* Fix terrible indentationBen Straub2014-02-061-1/+1
|
* Add reflog parameters to remote apisBen Straub2014-02-041-2/+14
| | | Also added a test for git_remote_fetch.
* Make sure git_remote_dup copies a remote's refspecs correctly.Arthur Schreiber2014-01-261-1/+1
|
* Add some missing const declarations.Arthur Schreiber2014-01-261-6/+6
|
* Add `git_remote_dup`.Arthur Schreiber2014-01-141-0/+12
|
* Merge pull request #1951 from victorgp/create-remote-plus-fetchVicent Martí2013-11-141-0/+19
|\ | | | | Allowing create remotes with custom fetch spec
| * fixing typoVictor Garcia2013-11-081-1/+1
| |
| * splitting funcionality in two methods to avoid ambiguity with NULLVictor Garcia2013-11-081-1/+17
| |
| * adding doc for new param and test to check fetch spec is correctly addedVictor Garcia2013-11-071-1/+3
| |
| * allowing create remote with custom fetch specVictor Garcia2013-11-071-1/+2
| |
* | remote: make _ls return the list directlyCarlos Martín Nieto2013-11-111-6/+7
| | | | | | | | | | | | | | | | | | | | | | The callback-based method of listing remote references dates back to the beginning of the network code's lifetime, when we didn't know any better. We need to keep the list around for update_tips() after disconnect() so let's make use of this to simply give the user a pointer to the array so they can write straightforward code instead of having to go through a callback.
* | remote: don't allow such direct access to the refspecsCarlos Martín Nieto2013-11-101-10/+27
| | | | | | | | | | | | Removing arbitrary refspecs makes things more complex to reason about. Instead, let the user set the fetch and push refspec list to whatever they want it to be.
* | remote: download HEAD when no refspecs are givenCarlos Martín Nieto2013-11-011-1/+1
|/ | | | | | | The correct behaviour when a remote has no refspecs (e.g. a URL from the command-line) is to download the remote's HEAD. Let's do that. This fixes #1261.
* Remove leftover function declarationCarlos Martín Nieto2013-10-301-15/+0
|
* transport: let the progress output return an errorCarlos Martín Nieto2013-10-231-1/+1
| | | | | There are any number of issues that can come up in the progress callback, and we should let the user cancel at that point as well.
* clone: put the callbacks struct directly in the clone optionsCarlos Martín Nieto2013-10-021-1/+1
| | | | There's no need for this to be a pointer to somewhere else.
* remote: add some comments to the callback structCarlos Martín Nieto2013-10-021-1/+33
| | | | Hopefully clear up what they're for.
* remote: add a convenience 'fetch' function.Carlos Martín Nieto2013-10-021-0/+11
|
* remote: move the credentials callback to the structCarlos Martín Nieto2013-10-021-0/+1
| | | | | Move this one as well, letting us have a single way of setting the callbacks for the remote, and removing fields from the clone options.
* remote: put the _download() callback with the othersCarlos Martín Nieto2013-10-021-9/+2
| | | | | | The text progress and update_tips callbacks are already part of the struct, which was meant to unify the callback setup, but the download one was left out.
* remote: fix git_remote_download() documentationCarlos Martín Nieto2013-07-231-13/+7
| | | | | | | | The description of what the function does hasn't been true for quite a while. Change it to reflect the way it currently works. While here, remove an even older comment about missing features that have been implemented.
* Add `git_remote_owner`Etienne Samson2013-07-151-0/+8
|
* Fixed most documentation header bugsAndreas Linde2013-06-241-2/+2
| | | | | | | | | | | Fixed a few header @param and @return typos with the help of -Wdocumentation in Xcode. The following warnings have not been fixed: common.h:213 - Not sure how the documentation format is for '...' notes.h:102 - Correct @param name but empty text notes.h:111 - Correct @param name but empty text pack.h:140 - @return missing text pack.h:148 - @return missing text
* Proposal to handle default value (auto = 0)yorah2013-05-301-4/+3
|
* remote: add resfpec list accessorsCarlos Martín Nieto2013-04-301-0/+26
| | | | | | Bring back a way of acessing the git_refspec* from a remote. Closes #1514
* remove git_remote_pushspecNikolai Vladimirov2013-04-231-9/+0
|
* remote: allow querying for refspecsCarlos Martín Nieto2013-04-201-2/+24
| | | | | | | | Introduce git_remote_{fetch,push}_refspecs() to get a list of refspecs from the remote and rename the refspec-adding functions to a less silly name. Use this instead of the vector index hacks in the tests.
* remote: handle multiple refspecsCarlos Martín Nieto2013-04-201-14/+15
| | | | | | | | | | | | | A remote can have a multitude of refspecs. Up to now our git_remote's have supported a single one for each fetch and push out of simplicity to get something working. Let the remotes and internal code know about multiple remotes and get the tests passing with them. Instead of setting a refspec, the external users can clear all and add refspecs. This should be enough for most uses, though we're still missing a querying function.
* remote: specify what values direction can mean in git_remote_connect()Carlos Martín Nieto2013-04-191-1/+2
| | | | This fixes #1487
* remote: Introduce git_remote_is_valid_name()nulltoken2013-02-111-0/+8
| | | | Fix libgit2/libgit2sharp#318
* Kill vestigal dangling-remote codeBen Straub2013-01-111-11/+1
| | | Fixes #1232
* update copyrightsEdward Thomson2013-01-081-1/+1
|