mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-11-13 07:31:15 +01:00
11 lines
210 B
Bash
11 lines
210 B
Bash
#!/bin/sh
|
|
|
|
git config --global init.templatedir '~/.git-templates'
|
|
mkdir -p ~/.git-templates/hooks
|
|
|
|
cat << EOF > ~/.bat/logo.svg
|
|
#!/bin/sh
|
|
|
|
# Copy last commit hash to clipboard on commit
|
|
echo 'POST COMMIT'
|
|
EOF
|