summaryrefslogtreecommitdiff
path: root/include/git2/clone.h
Commit message (Collapse)AuthorAgeFilesLines
* clone: fix param commentCarlos Martín Nieto2013-03-191-1/+1
|
* Clone: fetch all tagsBen Straub2013-02-061-1/+1
|
* Default git_clone_options' checkout strategy to GIT_CHECKOUT_SAFE_CREATESascha Cunz2013-01-121-1/+1
|
* Implement analog for 'git checkout --branch xxx ...'Sascha Cunz2013-01-111-0/+3
|
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* Include checkout options inlineBen Straub2013-01-021-4/+4
|
* Add more clone options. Push test suite segfaults.Ben Straub2012-12-191-3/+32
|
* Move non-options back out of options structBen Straub2012-12-141-8/+10
|
* Deploy git_clone_options; remove git_clone_bareBen Straub2012-12-141-38/+8
|
* Introduce git_clone_optionsBen Straub2012-12-141-0/+33
|
* Convert clone to use dangling remotesBen Straub2012-12-121-4/+4
|
* More external API cleanupVicent Marti2012-11-271-2/+2
| | | | | | Conflicts: src/branch.c tests-clar/refs/branches/create.c
* Network progress: rename thingsBen Straub2012-10-241-2/+2
| | | | | | | git_indexer_stats and friends -> git_transfer_progress* Also made git_transfer_progress members more sanely named.
* Update doc strings, warn about callback perfBen Straub2012-10-231-3/+8
|
* Clone: in-line callbacks for progressBen Straub2012-10-191-2/+4
| | | | Also implemented in the git2 example.
* Remove checkout_stats from git_cloneBen Straub2012-10-191-1/+0
|
* Clone: fix indentationBen Straub2012-10-191-10/+12
|
* clone: Explicit support of no-checkout optionnulltoken2012-10-151-3/+6
|
* Add documentation for clone methods.Ben Straub2012-07-311-2/+3
|
* Add checkout.h to git2.h.Ben Straub2012-07-311-2/+2
| | | Also correcting some documentation strings.
* Restructure for better checkout optionsBen Straub2012-07-261-4/+14
| | | | | | * Removed the #define for defaults * Promoted progress structure to top-level API call argument
* Add progress reporting to clone.Ben Straub2012-06-211-3/+6
|
* Add git_clone and git_clone_bare.Ben Straub2012-06-211-0/+45
So far they only create a repo, setup the "origin" remote, and fetch. The API probably needs work as well; there's no way to get progress information at this point. Also uncovered a shortcoming; git_remote_download doesn't fetch over local transport.