Sign a commit with openpgp and nodegit
npm install pgp-commit
See more examples in examples folder
const git = require('nodegit')
const pgpCommit = require('pgp-commit')
run()
async function run() {
// clone a repo
const repo = await git.Clone('https://github.com/owner/repo', '/temp/repo')
const commitMessage = 'add data to something'
const author = git.Signature.now('test', '[email protected]')
const committer = git.Signature.now('test', '[email protected]')
// make a change
fs.writeFileSync('/temp/repo/nothing', 'nothing')
// stage the change
const index = await repo.refreshIndex()
await index.addAll()
await index.write()
// make a signed commit
const commitId = await pgpCommit({
repo,
commitMessage,
author,
committer,
passphrase,
privateKey
})
}
see https://help.github.com/articles/adding-a-new-gpg-key-to-your-github-account/
$ gpg --export-secret-key -a "username"