mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-03 15:02:52 +02:00
14 lines
224 B
Bash
14 lines
224 B
Bash
|
#!/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
|