summaryrefslogtreecommitdiff
path: root/examples
Commit message (Collapse)AuthorAgeFilesLines
...
* Deploy GIT_CHECKOUT_OPTS_INITBen Straub2012-11-301-1/+1
|
* API updates for remote.hBen Straub2012-11-272-3/+3
| | | | | Includes typedef for git_direction, and renames for GIT_DIR_[FETCH|PUSH] to GIT_DIRECTION_(\1).
* API updates for index.hBen Straub2012-11-271-1/+1
|
* Update diff callback param orderRussell Belfer2012-11-272-5/+5
| | | | | | | | This makes the diff functions that take callbacks both take the payload parameter after the callback function pointers and pass the payload as the last argument to the callback function instead of the first. This should make them consistent with other callbacks across the API.
* API review / update for tree.hRussell Belfer2012-11-271-2/+2
|
* Examples: fix clone apiBen Straub2012-11-271-1/+1
|
* Examples: fix reference namesBen Straub2012-11-272-3/+3
|
* tag: rename git_tag_type to git_tag_target_typenulltoken2012-11-171-1/+1
|
* Add explicit git_index ptr to diff and checkoutRussell Belfer2012-11-141-6/+6
| | | | | | | | A number of diff APIs and the `git_checkout_index` API take a `git_repository` object an operate on the index. This updates them to take a `git_index` pointer explicitly and only fall back on the `git_repository` index if the index input is NULL. This makes it easier to operate on a temporary index.
* Fix various cross-platform build issuesRussell Belfer2012-11-094-13/+29
| | | | | | This fixes a number of warnings and problems with cross-platform builds. Among other things, it's not safe to name a member of a structure "strcmp" because that may be #defined.
* Improve docs, examples, warningsRussell Belfer2012-11-013-48/+63
| | | | | | This improves docs in some of the public header files, cleans up and improves some of the example code, and fixes a couple of pedantic warnings in places.
* index refactoringEdward Thomson2012-10-292-2/+3
|
* Remove 'bytes' param from git_remote_downloadBen Straub2012-10-241-6/+3
|
* Renaming: fix exampleBen Straub2012-10-243-14/+17
|
* Network progress: rename thingsBen Straub2012-10-241-1/+1
| | | | | | | git_indexer_stats and friends -> git_transfer_progress* Also made git_transfer_progress members more sanely named.
* Improve clone sample's formattingBen Straub2012-10-191-9/+6
|
* Checkout progress now reports completed/total stepsBen Straub2012-10-191-4/+8
|
* gitno_buffer: callback on each packetBen Straub2012-10-191-3/+4
| | | | | The fetch code takes advantage of this to implement a progress callback every 100kb of transfer.
* Correct progress reporting from checkoutBen Straub2012-10-191-3/+3
|
* Clone: in-line callbacks for progressBen Straub2012-10-191-42/+50
| | | | Also implemented in the git2 example.
* Fix example compilationBen Straub2012-10-192-2/+2
|
* Example: compile fixes (not yet working)Ben Straub2012-10-191-3/+2
|
* Add accessor for git_remote's stats fieldBen Straub2012-10-191-9/+8
| | | | Also converted the network example to use it.
* examples: fix config getter param orderCarlos Martín Nieto2012-09-301-2/+2
|
* examples: add progress output to fetchCarlos Martín Nieto2012-08-241-1/+13
|
* indexer: recognize and mark when all of the packfile has been downloadedCarlos Martín Nieto2012-08-241-1/+1
| | | | | We can't always rely on the network telling us when the download is finished. Recognize it from the indexer itself.
* Merge pull request #778 from ben/cloneVicent Martí2012-08-194-0/+71
|\ | | | | Clone
| * Rename example function to avoid name collision.Ben Straub2012-07-313-3/+3
| |
| * Checkout: save index on checkout.Ben Straub2012-07-311-1/+0
| |
| * Add clone to the network example.Ben Straub2012-07-304-0/+72
| |
* | examples: fix warnings in network/Carlos Martín Nieto2012-07-304-46/+24
| |
* | remote: start moving the protocol to a common areaCarlos Martín Nieto2012-07-301-0/+3
|/ | | | | | | For the transition, http is going to keep its own logic until the git/common code catches up with the implied multi_ack that http has. This also has the side-effect of making the code cleaner and more correct regardingt he protocol.
* Add a struct for network callbacksCarlos Martín Nieto2012-07-211-2/+9
| | | | | Currently only update_tips is used, but it prepares the way for progress output during download.
* Updating language in examples READMERussell Belfer2012-07-101-4/+7
|
* examples: add READMEMichael Schubert2012-07-101-0/+8
|
* indexer: don't use '/objects/pack/' unconditionallyCarlos Martín Nieto2012-06-282-2/+2
| | | | | Not everyone who indexes a packfile wants to put it in the standard git repository location.
* Fix incorrect revertChris Young2012-06-141-1/+1
|
* Updates from comments on OS4 compatibility pull request ↵Chris Young2012-06-142-8/+2
| | | | http://github.com/libgit2/libgit2/pull/766
* Merge remote-tracking branch 'source/development' into developmentChris Young2012-06-131-3/+1
|\
| * Minor fixes, cleanups, and clarificationsRussell Belfer2012-06-081-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are three actual changes in this commit: 1. When the trailing newline of a file is removed in a diff, the change will now be reported with `GIT_DIFF_LINE_DEL_EOFNL` passed to the callback. Previously, the `ADD_EOFNL` constant was given which was just an error in my understanding of when the various circumstances arose. `GIT_DIFF_LINE_ADD_EOFNL` is deprecated and should never be generated. A new newline is simply an `ADD`. 2. Rewrote the `diff_delta__merge_like_cgit` function that contains the core logic of the `git_diff_merge` implementation. The new version doesn't actually have significantly different behavior, but the logic should be much more obvious, I think. 3. Fixed a bug in `git_diff_merge` where it freed a string pool while some of the string data was still in use. This led to `git_diff_print_patch` accessing memory that had been freed. The rest of this commit contains improved documentation in `diff.h` to make the behavior and the equivalencies with core git clearer, and a bunch of new tests to cover the various cases, oh and a minor simplification of `examples/diff.c`.
* | Let platform 'Generic' get the regex deps so we don't need to use our ↵Chris Young2012-06-091-2/+2
| | | | | | | | external ones
* | allow disabling pthreads for testingChris Young2012-06-091-0/+6
| |
* | Fix makefileChris Young2012-06-091-3/+4
|/
* examples/network: consistently use tabs for indentationCarlos Martín Nieto2012-05-242-126/+126
|
* Fix examples/general.c compilationScott J. Goldman2012-05-201-1/+1
| | | | git_reference_listall() -> git reference_list()
* errors: Rename error codesbreaking-changesVicent Martí2012-05-181-2/+2
|
* errors: Rename the generic return codesVicent Martí2012-05-185-13/+13
|
* Basic setup for profilingRussell Belfer2012-05-172-2/+8
| | | | | This fixes the examples so they will build and adds a PROFILE option to the CMakeFile that enabled gprof info on non-Windows
* examples: fix an oopsieCarlos Martín Nieto2012-05-111-0/+1
|
* examples: update network examples error handlingCarlos Martín Nieto2012-05-101-2/+5
| | | | Use giterr_last() and make sure it's not NULL.