5 lines
69 B
Bash
5 lines
69 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cp .githooks/* .git/hooks
|
||
|
|
||
|
echo "hooks have been copied"
|