forked from theseion/libgit2-pharo-bindings
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add LGitRemote>>defaultBranchName (again) #8
Closed
tinchodias
wants to merge
137
commits into
jvdsandt:pharo50
from
pharo-vcs:remote-default-branch-name-2
Closed
Add LGitRemote>>defaultBranchName (again) #8
tinchodias
wants to merge
137
commits into
jvdsandt:pharo50
from
pharo-vcs:remote-default-branch-name-2
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Pass a ByteArray as the return buffer instead of String in #hexString. Using a String works in Squeak FFI as the result is guaranteed to be ascii, but it is bad practice in general. In Threaded FFI Strings are utf8 encoded and then passed in a buffer that is discarded after the call completes, i.e. they can't be used to return values (which is good since the decoding hasn't been done). 2. Use git_oid_nfmt() instead of git_oid_fmt(). The latter is suspectable to buffer overruns, which will corrupt object memory.
…sage_encoding:message:tree:parent_count:parents: parent_count parent_count is currently defined as an int, which is signed 32 bits. As documented at https://libgit2.org/libgit2/#HEAD/group/commit/git_commit_create it is actually a size_t, which is unsigned 64 bits on a 64 bit platform. In Squeak FFI this doesn't seem to matter, presumably it zero outs the top half when transferred as a 64 bit value, however Threaded FFI doesn't appear to do this. The result is that git commits will occasionally crash the VM when using Threaded FFI. Modify the function signature to use size_t. Fixes: pharo-project/pharo#5592
use-libraryfinder
LGitCommitBuilder>>commit_create:repo:update_ref:author:committer:mes…
LGitSignature: Answer #name and #email using #readStringUTF8 instead…
Extract code to LGitCommit>>parentAt:
Read global git config strings using utf8 encoding
improve-search-path-linux
Add position accessor
Updating to support tffi
add libgit 1.1
… dependent on @thesion user repo)
LGitReadStream (rawBuffer) LGitExternalObject (LibraryHandle Session)
Fix/encodings
categorize class side of LGitMessageDecoder
More robust credential callback
…ffHunk-classinitialize Fix small lint issue in LGitDiffHunk class>>#initialize
Sorry, I wanted to do it to pharo-vcs! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a revamp of old pharo-vcs#40