| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #1765 from arrbee/ambiguous-oids | Russell Belfer | 2013-08-05 | 9 | -2/+67 |
| |\ | | | | | More tests for ambiguous OIDs across packs | ||||
| | * | More tests for ambiguous OIDs across packs | Russell Belfer | 2013-08-05 | 9 | -2/+67 |
| | | | | | | | | | | | | | | | The test coverage for ambiguous OIDs was pretty thin. This adds a bunch of new objects both in packs, across packs, and loose that match to 8 characters so that we can test various cases of ambiguous lookups. | ||||
| * | | Merge pull request #1763 from nvloff/nameless_submodule_segfault | Russell Belfer | 2013-08-05 | 2 | -1/+7 |
| |\ \ | |/ |/| | submodule: check alloc and name presence | ||||
| | * | submodule: check alloc and name presense | Nikolai Vladimirov | 2013-08-05 | 2 | -1/+7 |
| |/ | |||||
| * | Update submodule documentation | Russell Belfer | 2013-08-05 | 2 | -21/+81 |
| | | | | | Fixes #1762 | ||||
| * | Merge pull request #1748 from arthurschreiber/patch-1 | Carlos Martín Nieto | 2013-07-31 | 1 | -6/+24 |
| |\ | | | | | Allow Makefile.embed to be used when cross-compiling | ||||
| | * | When building with MINGW, specify `__USE_MINGW_ANSI_STDIO`. | Arthur Schreiber | 2013-07-31 | 1 | -6/+6 |
| | | | | | | | This option is already present in the CMake config, but was missing from `Makefile.embed` and would cause all kinds of weird failures when compiling rugged on windows with the ruby devkit. | ||||
| | * | Allow Makefile.embed to be used when cross-compiling | Arthur Schreiber | 2013-07-25 | 1 | -5/+23 |
| | | | | | | | | | | | | | | | This allows libgit2 to be cross-compiled (e.g. when building native rugged binaries for windows from Linux or OS X). ``` CROSS_COMPILE=i686-w64-mingw32 make -f Makefile.embed ``` | ||||
| * | | Merge pull request #1755 from csware/double-close | Ben Straub | 2013-07-28 | 1 | -0/+1 |
| |\ \ | | | | | | | Fix possible double close | ||||
| | * | | Fix possible double close | Sven Strickroth | 2013-07-27 | 1 | -0/+1 |
| | | | | | | | | | | | | | Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| * | | | Merge pull request #1753 from 13ren/log-bugfix | Vicent Martí | 2013-07-27 | 1 | -3/+4 |
| |\ \ \ | |/ / |/| | | Fix -n bug; default to all ancestors | ||||
| | * | | Fix -n bug; default to all ancestors | Brendan Macmillan | 2013-07-27 | 1 | -3/+4 |
| |/ / | |||||
| * | | Merge pull request #1749 from csware/handle-fixes | Vicent Martí | 2013-07-25 | 1 | -2/+3 |
| |\ \ | |/ |/| | Close p->mwf.fd only if necessary | ||||
| | * | Close p->mwf.fd only if necessary | Sven Strickroth | 2013-07-25 | 1 | -2/+3 |
| |/ | | | | | | This fixes a regression introduced in revision 9d2f841a5d39fc25ce722a3904f6ebc9aa112222. Signed-off-by: Sven Strickroth <email@cs-ware.de> | ||||
| * | Merge pull request #1745 from libgit2/doc-fixes | Russell Belfer | 2013-07-23 | 9 | -32/+20 |
| |\ | | | | | Doc fixes | ||||
| | * | remote: fix git_remote_download() documentation | Carlos Martín Nieto | 2013-07-23 | 1 | -13/+7 |
| | | | | | | | | | | | | | | | | | The description of what the function does hasn't been true for quite a while. Change it to reflect the way it currently works. While here, remove an even older comment about missing features that have been implemented. | ||||
| | * | Clean up some documentation | Carlos Martín Nieto | 2013-07-23 | 8 | -19/+13 |
| |/ | | | | clang's docparser highlighted these. | ||||
| * | Merge pull request #1732 from libgit2/revwalk-glob-should-ignore-invalid | Vicent Martí | 2013-07-22 | 3 | -36/+103 |
| |\ | | | | | Invalid refs on disk cause revwalk globbing to fail | ||||
| | * | Update init and clean for revwalk::basic tests | Russell Belfer | 2013-07-22 | 1 | -12/+38 |
| | | | | | | | | | | | The new tests don't always want to use the same fixture data as the old ones so this makes it configurable on a per-test basis. | ||||
| | * | Fix warning message about mismatched types | Russell Belfer | 2013-07-22 | 1 | -5/+3 |
| | | | |||||
| | * | Use pool for loose refdb string allocations | Russell Belfer | 2013-07-22 | 1 | -22/+33 |
| | | | | | | | | | | | | | | | | | | | | | | | Instead of using lots of strdup calls, this adds a memory pool to the loose refs iteration code and uses it for keeping track of the loose refs array. Memory usage could probably be reduced even further by eliminating the vector and just scanning by adding the strlen of each ref, but that would be a more intrusive changes. This also updates the error handling to be more thorough about checking for failed allocations, etc. | ||||
| | * | git_reference_next_name must match git_reference_next | Russell Belfer | 2013-07-22 | 2 | -3/+35 |
| |/ | | | | | | | | | | The git_reference_next API silently skips invalid references when scanning the loose refs. The git_reference_next_name API should skip the same ones even though it isn't creating the reference object. This adds a test with a an invalid loose reference and makes sure that both APIs skip the same entries and generate the same results. | ||||
| * | Merge pull request #1743 from ethomson/readme | Martin Woodward | 2013-07-19 | 1 | -2/+3 |
| |\ | | | | | Clarify when to use github issues | ||||
| | * | Update README.md | Edward Thomson | 2013-07-19 | 1 | -1/+1 |
| | | | |||||
| | * | Clarify when to use github issues | Edward Thomson | 2013-07-19 | 1 | -2/+3 |
| | | | | | | | Suggest that github issues are to be used for bug reports, while questions about usage should be directed to StackOverflow. | ||||
| * | | Merge pull request #1726 from crazymaster/development | Ben Straub | 2013-07-19 | 2 | -3/+6 |
| |\ \ | |/ |/| | git_buf_text_gather_stats doesn't work for multi-byte characters | ||||
| | * | Fix | crazymaster | 2013-07-15 | 1 | -2/+2 |
| | | | |||||
| | * | Fix typo | crazymaster | 2013-07-15 | 1 | -2/+2 |
| | | | |||||
| | * | Fix the initial line | crazymaster | 2013-07-15 | 1 | -23/+18 |
| | | | |||||
| | * | Revert "Replace Japanese characters with the encoded hexadecimal values" | crazymaster | 2013-07-15 | 1 | -2/+2 |
| | | | | | | | | | This reverts commit a91e4d6b21e141c2abc76b65b2d4c91d5d3e03cc. | ||||
| | * | Replace Japanese characters with the encoded hexadecimal values | crazymaster | 2013-07-15 | 1 | -2/+2 |
| | | | |||||
| | * | Fix gather_stats | crazymaster | 2013-07-14 | 1 | -18/+23 |
| | | | |||||
| | * | Add test for multi-byte characters | crazymaster | 2013-07-14 | 1 | -2/+5 |
| | | | |||||
| * | | Merge pull request #1742 from martinwoodward/Refresh-Readme | Ben Straub | 2013-07-19 | 2 | -10/+22 |
| |\ \ | | | | | | | Refresh readme and contributing guidance | ||||
| | * | | Update contributing guidance to explain PR flow | Martin Woodward | 2013-07-19 | 1 | -2/+11 |
| | | | | | | | | | | | | | | | | Updating the contributing guidance to explain a bit more about how we use PR's | ||||
| | * | | Tidy up the methods of contacting the project | Martin Woodward | 2013-07-19 | 1 | -8/+11 |
| |/ / | | | | | | | | | Updated the methods of getting involved with the project and asking questions. | ||||
| * | | Typo | Ben Straub | 2013-07-18 | 1 | -1/+1 |
| | | | |||||
| * | | Merge pull request #1736 from ben/default-to-cdecl | Vicent Martí | 2013-07-18 | 1 | -9/+6 |
| |\ \ | | | | | | | Switch default calling convention to cdecl | ||||
| | * | | Switch default calling convention to cdecl. | Ben Straub | 2013-07-17 | 1 | -9/+6 |
| | | | | |||||
| * | | | Merge pull request #1722 from libgit2/ntk/fix/issue_1722 | Ben Straub | 2013-07-17 | 2 | -0/+54 |
| |\ \ \ | | | | | | | | | git_revparse_ext: should return a NULL reference when the revparse expression doesn't lead to a reference | ||||
| | * | | | revparse: Don't return a reference when asked for a git object | nulltoken | 2013-07-13 | 2 | -0/+54 |
| | | |/ | |/| | | | | | | | Fix #1722 | ||||
| * | | | Merge pull request #1735 from ethomson/ignored_are_not_rename_candidates | Vicent Martí | 2013-07-17 | 1 | -1/+3 |
| |\ \ \ | |_|/ |/| | | don't include ignored as rename candidates | ||||
| | * | | don't include ignored as rename candidates | Edward Thomson | 2013-07-17 | 1 | -1/+3 |
| |/ / | |||||
| * | | Merge pull request #1731 from alindeman/patch-1 | Ben Straub | 2013-07-15 | 1 | -1/+1 |
| |\ \ | | | | | | | Small grammar fix in docs | ||||
| | * | | Small grammar fix in docs | Andy Lindeman | 2013-07-15 | 1 | -1/+1 |
| |/ / | |||||
| * | | Merge pull request #1728 from ivoire/small_fixes | Vicent Martí | 2013-07-15 | 7 | -10/+23 |
| |\ \ | | | | | | | Small fixes | ||||
| | * | | Fix some more memory leaks in error path | Rémi Duraffort | 2013-07-15 | 2 | -1/+4 |
| | | | | |||||
| | * | | pack: fix memory leak in error path | Rémi Duraffort | 2013-07-15 | 2 | -2/+6 |
| | | | | |||||
| | * | | index: fix potential memory leaks | Rémi Duraffort | 2013-07-15 | 2 | -4/+10 |
| | | | | |||||
| | * | | repository: clarify assignment and test order | Rémi Duraffort | 2013-07-15 | 1 | -3/+3 |
| | | | | |||||
