-
-
Notifications
You must be signed in to change notification settings - Fork 934
GPG signature support on commit object. #124
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
Conversation
It'll be nice to have this merged at least. GPG signed commits are good! |
What's the current status on this? I've inherited some code that reports git versions of the running system, and it started breaking when we started signing our code. |
FWIW in addition to signed commits there are also signed tags, and further-more when you merge a signed tag recent versions of git will actually include the signed tag itself in the commit created, letting you verify that signature without the tag object itself. Not too many projects do this, but the Linux kernel git repo does. |
Can someone fix this pull request? |
I just had a look at this one, and it seems it's not easily mergeable for some reason. Also, it might not be of any use as branch 0.3 is the one most people are seeing, which will require it to be backported as well. |
Hi, try to apply it from here http://pastebin.com/729KRw8V (If the patch still won't apply try to add a space to the end of the last line. Pastebin removed it for some reason...) |
Thanks for the hint ! |
Originals: Pull request "GPG signature support on commit object" gitpython-developers#124 by Tatsuki Sugiura. gitpython-developers#124 commit 8065d2a commit 62ecd6c
I have rebased this pull request to current 0.3 and sent new one #189. Please review and and consider to merge. |
I will close this request, as it was already merged into 0.3. In master it is not required, as it is obsolete. |
I rewrite the patch for GPG signature support with unit test.
This replaces pull request #57 and also fixes issue #110.