1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

add gpg repo generator

This commit is contained in:
Jesse Duffield 2018-08-14 18:11:47 +10:00
parent 5f30f07ea5
commit 88af0fb1b6

14
test/repos/gpg.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
set -ex; rm -rf repo; mkdir repo; cd repo
git init
git config gpg.program $(which gpg)
git config user.signingkey E304229F # test key
git config commit.gpgsign true
touch foo
git add foo
touch bar
git add bar