- 25 Oct, 2013 1 commit
-
-
Edward Thomson committed
-
- 24 Oct, 2013 2 commits
-
-
fix typos in README.md
Vicent Martí committed -
Nicolas Kaiser committed
-
- 23 Oct, 2013 6 commits
-
-
It turns out that variables have function scope by default. Let's really set -liconv and add a few libraries that were forgotten in the previous commit. We also need to special-case OSX, as they ship zlib but do not provide a pkg-config file for it.
Carlos Martín Nieto committed -
Be explicit about dependencies
Vicent Martí committed -
transport: let the progress output return an error
Vicent Martí committed -
There are any number of issues that can come up in the progress callback, and we should let the user cancel at that point as well.
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
When linking statically, the including project needs to know what the current library build depends on so they can link to it. Store this information in the pkg-config file. While here, remove claims that users need to link to zlib or libcrypto.
Carlos Martín Nieto committed
-
- 22 Oct, 2013 3 commits
-
-
RFC: Proposed reworking of diff APIs
Vicent Martí committed -
Russell Belfer committed
-
Vicent Marti committed
-
- 21 Oct, 2013 6 commits
-
-
It seems that to implement these options, we just have to pass the appropriate flags through to the libxdiff code taken from core git. So let's do it (and add a test).
Russell Belfer committed -
Russell Belfer committed
-
Instead of having functions with so very many parameters to pass hunk and line data, this takes the existing git_diff_hunk struct and extends it with more hunk data, plus adds a git_diff_line. Those structs are used to pass back hunk and line data instead of the old APIs that took tons of parameters. Some work that was previously only being done for git_diff_patch creation (scanning the diff content for exact line counts) is now done for all callbacks, but the performance difference should not be noticable.
Russell Belfer committed -
Allowed credential types should be a bitfield
Vicent Martí committed -
Edward Thomson committed
-
While the base git_diff_delta structure always contains two files, when we introduce conflict data, it will be helpful to have an indicator when an additional file is involved.
Russell Belfer committed
-
- 18 Oct, 2013 1 commit
-
-
license clarification + formatting all over
Vicent Martí committed
-
- 17 Oct, 2013 3 commits
-
-
fixed typo `can can` -> `can`
Haneef Mubarak committed -
added the second change suggested by @nulltoken (with two extra words :) )
Haneef Mubarak committed -
There are commercial open source applications, hence proprietary seems to be a better term. Also: - Trimmed header `=`'s to match text length - made libgit2 stand out everywhere - pretty printing links - irc link for those with the correct setup
Haneef Mubarak committed
-
- 16 Oct, 2013 12 commits
-
-
Checkout merge
Vicent Martí committed -
Edward Thomson committed
-
It seemed exceptionally silly to have a split there where no split needed to be.
Edward Thomson committed -
Move conflict handling into two steps: load the conflicts and then apply the conflicts. This is more compatible with the existing checkout implementation and makes progress reporting more sane.
Edward Thomson committed -
Edward Thomson committed
-
Edward Thomson committed
-
If a D/F conflict or rename 2->1 conflict occurs, we write the file sides as filename~branchname. If a file with that name already exists in the working directory, write as filename~branchname_0 instead. (Incrementing 0 until a unique filename is found.)
Edward Thomson committed -
Edward Thomson committed
-
rename conflict tests for checkout conflicts, don't suffix filenames when checking out with USE_OURS or USE_THEIRS
Edward Thomson committed -
Prevent checkout tree when unresolved changes exist (unless FORCE flag is specified). Clear NAME table when checking out, to avoid checkout_conflicts from attempting to manipulate it. Ensure that NAME is also cleared at reset.
Edward Thomson committed -
Edward Thomson committed
-
Edward Thomson committed
-
- 15 Oct, 2013 1 commit
-
-
This lays groundwork for separating formatting options from diff creation options. This groups the formatting flags separately from the diff list creation flags and reorders the options. This also tweaks some APIs to further separate code that uses patches from code that just looks at git_diffs.
Russell Belfer committed
-
- 11 Oct, 2013 3 commits
-
-
This makes no functional change to diff but renames a couple of the objects and splits the new git_patch (formerly git_diff_patch) into a new header file.
Russell Belfer committed -
Provide the user with a more useful error code when a looking up a reference which name points to a namepace
Vicent Martí committed -
This lets the reference code return not-found when the user asks to look up a reference when in fact they pass a namespace.
Carlos Martín Nieto committed
-
- 10 Oct, 2013 2 commits
-
-
Fix a typo in the rpm build instructions.
Ben Straub committed -
Arthur Schreiber committed
-