summaryrefslogtreecommitdiff
path: root/examples/network/fetch.c
Commit message (Collapse)AuthorAgeFilesLines
* remote: Cleanup the remotes coderepo-ownershipVicent Marti2011-11-281-31/+1
| | | | | | - Hide the remaining transports code - Drop `git_headarray`, switch to using a callback to list refs. Makes the code cleaner.
* examples/network/fetch.c: revert overzealous conversion of free to git__freeBrandon Casey2011-11-061-1/+1
| | | | | Since git__free is not exported (it's actually a macro), it should not be used in client programs. Change this call to 'git__free' back to 'free'.
* global: Properly use `git__` memory wrappersVicent Marti2011-10-281-1/+1
| | | | | Ensure that all memory related functions (malloc, calloc, strdup, free, etc) are using their respective `git__` wrappers.
* examples: add ls-remote, fetch and index-pack examplesCarlos Martín Nieto2011-10-031-0/+127
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>