summaryrefslogtreecommitdiff
path: root/examples/network
Commit message (Collapse)AuthorAgeFilesLines
...
* examples: stream indexer exampleCarlos Martín Nieto2012-04-131-0/+55
|
* Use new error handling in the example network codeCarlos Martín Nieto2012-04-111-1/+1
|
* remote: Cleanup the remotes coderepo-ownershipVicent Marti2011-11-283-78/+11
| | | | | | - Hide the remaining transports code - Drop `git_headarray`, switch to using a callback to list refs. Makes the code cleaner.
* examples/network/.gitignore: ignore 'git2'Brandon Casey2011-11-061-0/+1
|
* examples/network/git2.c: exit with proper status, and avoid segfaultBrandon Casey2011-11-061-1/+2
| | | | | | | | This function should exit after printing usage information if too few arguments were specified. Additionally, it should exit with a failure status if the first argument supplied is not one in the internal command list.
* examples/network/git2.c: add newline to usage messageBrandon Casey2011-11-061-1/+1
|
* 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-036-0/+372
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>