We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When repo.amend_commit(commit, branch, tree=tree), where branch is a Reference/str, the reference is update by libgit2 upon calling git_commit_amend.
repo.amend_commit(commit, branch, tree=tree)
branch
Reference/str
However, the reference object branch still points to (branch.peel()) the original commit.
branch.peel()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When
repo.amend_commit(commit, branch, tree=tree)
, wherebranch
is aReference/str
, the reference is update by libgit2 upon calling git_commit_amend.However, the reference object
branch
still points to (branch.peel()
) the original commit.The text was updated successfully, but these errors were encountered: