mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-11-07 06:33:43 +01:00
11 lines
121 B
Bash
11 lines
121 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
OLD_DIR=$PWD
|
||
|
cd ../.git/hooks/
|
||
|
|
||
|
for i in commit-msg post-commit
|
||
|
do
|
||
|
rm $i
|
||
|
ln -s $OLD_DIR/$i $PWD/$i
|
||
|
done
|