Files
svr/usr/bin/gitotal
T
2026-01-23 08:55:18 +01:00

11 lines
139 B
Bash
Executable File

#!/bin/bash
gitotal ()
{
gitaddcommit $@;
git pull;
if [ -n "$?" ]; then
git push origin HEAD;
fi
}
gitotal "$@"