Commit signatures

Hello! I haven’t signed the commit for the pull request. I’m afraid that my pull request won’t be considered.
How to sign commits properly? Is there a guideline with a git on how to handle the repository?

Hi Orbulon,

Some repositories have their own rules for contributing. Here’s a link that answers your question. It’s best if you read each rule separately for your own convenience and to benefit the community.

If you have already made the commit, you can still sign off the last commit using the --amend flag. If you have more than one commit that needs a sign off, you can alter that too using the rebase command. eg. for the last two commits:

git rebase --signoff HEAD~2

src: Git sign off previous commits? - Stack Overflow

1 Like