summaryrefslogtreecommitdiff
path: root/tests-clar/network/remotes.c
Commit message (Collapse)AuthorAgeFilesLines
* remote: set/unset the autotag setting on saveCarlos Martín Nieto2012-10-021-0/+24
| | | | | Make the configuration option match the configured behavior when saving a remote.
* refspec: No remote tracking ref from a fetchspec-less remotenulltoken2012-09-131-2/+2
|
* Remotes: Use correct url in git_remote_connectSascha Cunz2012-07-271-0/+12
|
* Remotes: Save a cleaned pushurl (by deleting it from the config)Sascha Cunz2012-07-271-0/+9
|
* Tests: Test remote's pushurlSascha Cunz2012-07-261-2/+25
|
* tests: Fix warning with nested commentsVicent Marti2012-06-051-1/+1
|
* remote: Make git_remote_add() generate a default refspec with a force update ↵nulltoken2012-06-041-0/+10
| | | | specifier
* refspec: expose the force update specifier through git_refspec_force() accessornulltoken2012-05-301-0/+1
|
* remotes: change git_remote_new's signatureCarlos Martín Nieto2012-05-081-1/+1
| | | | | Add a fetch refspec arguemnt and make the arguments (name, url, refspec), as that order makes more sense.
* remote: add git_remote_add()Carlos Martín Nieto2012-05-081-0/+12
| | | | Helper function to create a remote with the default settings
* remote: make git_remote_load() return GIT_ENOTFOUND when the remote url ↵nulltoken2012-05-081-0/+5
| | | | cannot be retrieved from the config file
* Remove old and unused error codesVicent Martí2012-05-021-2/+2
|
* Update test suiteVicent Martí2012-05-021-14/+14
|
* Discovered cl_git_strequal! Mounted a crusade!Ben Straub2012-03-311-14/+14
|
* introduced new function: git_remote_supported_url() <-- returns true if this ↵Ryan Wilcox2012-03-011-1/+12
| | | | version of libgit2 supports the correct transport mechanism for a URL or path
* implement support for username@host:path URLs in transport_find_fn()Ryan Wilcox2012-02-291-0/+10
|
* Add git_remote_list()Carlos Martín Nieto2012-02-261-0/+18
| | | | | Loops through the configuration and generates a list of configured remotes.
* A remote exists with an URL aloneCarlos Martín Nieto2012-02-241-0/+13
| | | | | | | We used to consider it an error if a remote didn't have at least a fetch refspec. This was too much checking, as a remote doesn't in fact need to have anything other than an URL configured to be considered a remote.
* Add git_remote_save()Carlos Martín Nieto2012-02-201-0/+26
|
* Add git_remote_set_{fetch,push}spec()Carlos Martín Nieto2012-02-201-0/+16
| | | | | Allow setting the fetch and push refspecs, which is useful for creating new refspecs.
* tests: free the remotes temp bufferCarlos Martín Nieto2012-02-011-0/+1
|
* refspec: a ref name includes the refs/ prefixCarlos Martín Nieto2012-01-311-0/+10
| | | | | | | git_refspec_transform_r assumed that the reference name passed would be only a branch or tag name. This is not the case, and we need to take into consideration what's in the refspec's source to know how much of the prefix to ignore.
* Rename the Clay test suite to ClarVicent Martí2012-01-241-0/+50
Clay is the name of a programming language on the makings, and we want to avoid confusions. Sorry for the huge diff!