git gpg 签署一切
git gpg sign everything
我正在尝试通过 git 对我所做的每项操作进行签名。
签署提交
git commit -S -am 'message'
签名标签
git tag -s -a <tag>
签名合并
git merge -S <branch>
但是还有一个问题。当我简单地拉取时,它有时会自动创建与未签名的拉取的合并。
那么我如何签署由 git pull
完成的合并?
不确定这是否适合您,但您可以在没有合并提交的情况下拉取,然后手动执行提交
git pull --no-commit
git commit -S -am 'The merge commit'
我正在尝试通过 git 对我所做的每项操作进行签名。
签署提交
git commit -S -am 'message'
签名标签
git tag -s -a <tag>
签名合并
git merge -S <branch>
但是还有一个问题。当我简单地拉取时,它有时会自动创建与未签名的拉取的合并。
那么我如何签署由 git pull
完成的合并?
不确定这是否适合您,但您可以在没有合并提交的情况下拉取,然后手动执行提交
git pull --no-commit
git commit -S -am 'The merge commit'