6 lines
124 B
Bash
Executable File
6 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
cd /var/git
|
|
git add $1
|
|
git commit $1 -m "Saved $1 via administrative interface."
|
|
/var/git/.git/hooks/post-receive
|