summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Merge pull request #1027 from PaulThompson/cmake-flags-cleanVicent Martí2012-10-291-6/+10
|\ \ \ \ \ | | | | | | | | | | | | Cmake flags clean
| * | | | | Leave CMAKE_BUILD_TYPE absent on those generators which don't use it.Paul Thompson2012-10-281-4/+9
| | | | | |
| * | | | | Removed overwrite of CMAKE_C_FLAGS_DEBUG.Paul Thompson2012-10-281-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - No overwriting allows control from cmake cache or cmdline - -g is already the CMake default - -O0 is already gcc's default
| * | | | | Remove "-O2 -g" from default CMAKE_C_FLAGS.Paul Thompson2012-10-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Those are the RelWithDebInfo flags. - They should be controlled from CMAKE_BUILD_TYPE
| * | | | | Remove duplicate CMAKE_C_FLAGS inside CMAKE_C_FLAGS_DEBUG.Paul Thompson2012-10-281-1/+1
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | - For Debug builds, CMake uses concatenated CMAKE_C_FLAGS and CMAKE_C_FLAGS_DEBUG - This reverts commit 291f7122927d2cc170dc63c378a08fa78515d987.
* | | | | Merge pull request #796 from nulltoken/topic/git-stashVicent Martí2012-10-2917-100/+1585
|\ \ \ \ \ | |/ / / / |/| | | | Stash
| * | | | stash: add git_stash_drop()nulltoken2012-10-264-1/+182
| | | | |
| * | | | stash: add git_stash_foreach()nulltoken2012-10-263-0/+201
| | | | |
| * | | | stash: add git_stash_save()nulltoken2012-10-266-0/+1089
| | | | |
| * | | | error: add GITERR_STASH error typenulltoken2012-10-261-0/+1
| | | | |
| * | | | refs: add GIT_REFS_STASH_FILE definenulltoken2012-10-261-0/+3
| | | | |
| * | | | index: introduce git_index_owner()nulltoken2012-10-262-0/+13
| | | | |
| * | | | reflog: fix bogus removal of reflog entriesnulltoken2012-10-262-30/+21
| | | | |
| * | | | reflog: create reflog and its directory structurenulltoken2012-10-261-1/+4
| | | | |
| * | | | reflog: Make git_reflog_free() accept null paramnulltoken2012-10-261-0/+3
| | | | |
| * | | | reflog: fix documentation typosnulltoken2012-10-261-3/+3
| | | | |
| * | | | message: reorganize testsnulltoken2012-10-262-65/+65
| |/ / /
* | | | Add network transfer callbacks on WindowsBen Straub2012-10-261-0/+1
|/ / /
* | | Merge pull request #1021 from ethomson/cmake_vsVicent Martí2012-10-251-0/+3
|\ \ \ | | | | | | | | remove /ZM1000 from msvc builds
| * | | remove /ZM1000 from msvc buildsEdward Thomson2012-10-251-0/+3
| |/ /
* | | Merge pull request #925 from nulltoken/topic/moving-branch-updates-configRussell Belfer2012-10-2516-35/+970
|\ \ \ | | | | | | | | Updates config upon moving and deletion of branches
| * | | remote: introduce git_remote_rename()nulltoken2012-10-255-0/+524
| | | |
| * | | buf: introduce git_buf_splice()nulltoken2012-10-253-0/+146
| | | |
| * | | refspec: introduce git_refspec__serialize()nulltoken2012-10-253-7/+17
| | | |
| * | | remote: remove some code duplicationnulltoken2012-10-251-27/+48
| | | |
| * | | remote: prevent from saving a nameless remotenulltoken2012-10-252-5/+55
| | | |
| * | | config: introduce git_config_rename_section()nulltoken2012-10-253-87/+113
| | | |
| * | | branch: rename config section upon movingnulltoken2012-10-252-12/+80
| | | |
| * | | branch: remove config section upon deletionnulltoken2012-10-254-0/+90
| | | |
* | | | config: Only dereference value on successVicent Marti2012-10-251-1/+1
| | | |
* | | | Remove inline hintBen Straub2012-10-251-1/+1
| | | |
* | | | Fix Windows buildBen Straub2012-10-255-6/+6
| | | | | | | | | | | | | | | | Pedantic ordering of GIT_UNUSED vs. variable declarations.
* | | | Merge pull request #990 from ben/clone-callbacksVicent Martí2012-10-2531-237/+419
|\ \ \ \ | |/ / / |/| | | Progress callbacks
| * | | Remove 'bytes' param from git_remote_downloadBen Straub2012-10-248-29/+12
| | | |
| * | | Renaming: fix exampleBen Straub2012-10-243-14/+17
| | | |
| * | | Network progress: rename thingsBen Straub2012-10-2415-59/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | git_indexer_stats and friends -> git_transfer_progress* Also made git_transfer_progress members more sanely named.
| * | | Fix documentation commentBen Straub2012-10-241-1/+2
| | | |
| * | | Update doc strings, warn about callback perfBen Straub2012-10-232-4/+11
| | | |
| * | | Improve clone sample's formattingBen Straub2012-10-192-10/+8
| | | |
| * | | Checkout progress now reports completed/total stepsBen Straub2012-10-196-25/+30
| | | |
| * | | Fix from rebaseBen Straub2012-10-191-1/+1
| | | |
| * | | Remove third stage from checkout progress reportingBen Straub2012-10-191-12/+8
| | | | | | | | | | | | | | | | | | | | Also, now only reporting checkout progress for files that are actually being added or removed.
| * | | gitno_buffer: callback on each packetBen Straub2012-10-196-4/+44
| | | | | | | | | | | | | | | | | | | | The fetch code takes advantage of this to implement a progress callback every 100kb of transfer.
| * | | Fix broken testsBen Straub2012-10-192-10/+10
| | | |
| * | | Indexing progress now goes to 100%Ben Straub2012-10-191-0/+1
| | | |
| * | | Correct progress reporting from checkoutBen Straub2012-10-192-11/+38
| | | |
| * | | Adjust for rebaseBen Straub2012-10-192-3/+1
| | | |
| * | | Clone: in-line callbacks for progressBen Straub2012-10-195-72/+99
| | | | | | | | | | | | | | | | Also implemented in the git2 example.
| * | | Fix clone.c's indentationBen Straub2012-10-191-9/+11
| | | |
| * | | Fix example compilationBen Straub2012-10-192-2/+2
| | | |