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