mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-11 16:16:28 -04:00
10 lines
174 B
Bash
Executable file
10 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
set -ex; rm -rf repo; mkdir repo; cd repo
|
|
|
|
git init
|
|
cp ../extras/pre-commit .git/hooks/pre-commit
|
|
chmod +x .git/hooks/pre-commit
|
|
|
|
echo "file" > file
|
|
git add file
|