1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/test/repos/gpg.sh

19 lines
376 B
Bash
Raw Normal View History

2018-08-14 10:11:47 +02:00
#!/bin/bash
set -ex; rm -rf repo; mkdir repo; cd repo
git init
git config user.email "test@example.com"
git config user.name "Lazygit Tester"
2018-08-14 10:11:47 +02:00
git config gpg.program $(which gpg)
git config user.signingkey E304229F # test key
git config commit.gpgsign true
git config credential.helper store
git config credential.helper cache 1
2018-08-14 10:11:47 +02:00
touch foo
git add foo
touch bar
git add bar