Write a script for mass signing commits

This commit is contained in:
Ohad Livne 2025-06-04 22:44:24 +03:00
parent fc4fafb879
commit fc06ecda70
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
3 changed files with 11 additions and 0 deletions

8
.local/bin/git-resign Executable file
View file

@ -0,0 +1,8 @@
#! /usr/bin/sh
rebase_marker="$(git rev-parse --show-toplevel)/.git/rebase-merge/done"
while [ -f ${rebase_marker} ]
do
git sign
git rebase --continue
done