-
Notifications
You must be signed in to change notification settings - Fork 52
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
Support gpgsig parsing and some extra fixes #20
Conversation
Signed-off-by: Lance Chen <cyen0312@gmail.com>
Without this patch, parsing through commits that are gpg signed would fail. Signed-off-by: Lance Chen <cyen0312@gmail.com>
There are two reasons for removing these lines of code 1. There are no push methods for strings (author_line/committer_line) 2. git does not support multiple authors/committers Signed-off-by: Lance Chen <cyen0312@gmail.com>
I can't find the 'first' property anywhere, though it does not cause any problem. Signed-off-by: Lance Chen <cyen0312@gmail.com>
Not sure if I'm doing it right. Please check! 😕 |
Could you validate the content of the signature in addition to asserting that it is there? |
I don't quite understand your question. Do you mean if I can check whether the signature is a valid gpg signature instead of some forged garbage? |
Ah no. Just testing the contents of |
Signed-off-by: Lance Chen <cyen0312@gmail.com>
Sorry for the late response. I have added a test case to validate the signature content. |
Thank you! |
Support gpgsig parsing and some extra fixes
This pull request consists of one major feature and three minor fixes