2012-12-02 22:26:02 +00:00
|
|
|
#!/usr/bin/env bash
|
2012-10-20 11:49:53 +00:00
|
|
|
#
|
|
|
|
# gitwatch - watch file or directory and git commit all changes as they happen
|
|
|
|
#
|
|
|
|
# Copyright (C) 2012 Patrick Lehner
|
2012-11-27 19:10:16 +00:00
|
|
|
# with modifications and contributions by:
|
|
|
|
# - Matthew McGowan
|
2012-12-03 21:30:15 +00:00
|
|
|
# - Dominik D. Geyer
|
2012-10-20 11:49:53 +00:00
|
|
|
#
|
|
|
|
#############################################################################
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#############################################################################
|
|
|
|
#
|
|
|
|
# Idea and original code taken from http://stackoverflow.com/a/965274
|
|
|
|
# (but heavily modified by now)
|
|
|
|
#
|
|
|
|
# Requires the command 'inotifywait' to be available, which is part of
|
2012-11-30 23:58:17 +00:00
|
|
|
# the inotify-tools (See https://github.com/rvoicilas/inotify-tools ),
|
|
|
|
# and (obviously) git
|
2012-10-20 11:49:53 +00:00
|
|
|
#
|
|
|
|
|
2012-11-28 00:02:11 +00:00
|
|
|
REMOTE=""
|
|
|
|
BRANCH="master"
|
|
|
|
|
2012-11-30 23:58:17 +00:00
|
|
|
shelp () { # Print a message about how to use this script
|
|
|
|
echo "gitwatch - watch file or directory and git commit all changes as they happen"
|
|
|
|
echo ""
|
|
|
|
echo "Usage:"
|
2012-12-02 23:25:45 +00:00
|
|
|
echo "${0##*/} [-p <remote> [-b <branch>]] <target>"
|
2012-11-30 23:58:17 +00:00
|
|
|
echo ""
|
|
|
|
echo "Where <target> is the file or folder which should be watched. The target needs"
|
|
|
|
echo "to be in a Git repository; or in the case of a folder, it may also be the top"
|
|
|
|
echo "folder of the repo."
|
|
|
|
echo "The optional <remote> and <branch> define the arguments used for 'git push',"
|
|
|
|
echo "which will be automatically done after each commit, if at least the -p option"
|
|
|
|
echo "is specified."
|
2012-11-27 20:03:31 +00:00
|
|
|
}
|
|
|
|
|
2012-12-03 21:30:15 +00:00
|
|
|
while getopts b:hp: option # Process command line options
|
2012-11-28 00:02:11 +00:00
|
|
|
do
|
2012-11-30 23:30:57 +00:00
|
|
|
case "${option}" in
|
2012-11-30 23:35:08 +00:00
|
|
|
b) BRANCH=${OPTARG};;
|
2012-11-30 23:30:57 +00:00
|
|
|
h) shelp; exit;;
|
2012-11-30 23:35:08 +00:00
|
|
|
p) REMOTE=${OPTARG};;
|
2012-11-28 00:02:11 +00:00
|
|
|
esac
|
2012-11-30 23:15:48 +00:00
|
|
|
done
|
2012-11-28 00:02:11 +00:00
|
|
|
|
2012-11-30 23:35:08 +00:00
|
|
|
shift $((OPTIND-1)) # Shift the input arguments, so that the input file (last arg) is $1 in the code below
|
2012-11-30 23:30:57 +00:00
|
|
|
|
2012-12-03 21:30:15 +00:00
|
|
|
if [ $# -ne 1 ]; then # If no command line arguments are left (that's bad: no target was passed)
|
|
|
|
shelp # print usage help
|
|
|
|
exit # and exit
|
2012-12-02 23:20:49 +00:00
|
|
|
fi
|
|
|
|
|
2012-11-27 09:04:20 +00:00
|
|
|
|
2012-12-03 19:17:27 +00:00
|
|
|
is_command () { # Tests for the availability of a command
|
|
|
|
which $1 &>/dev/null
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check dependencies and die if not met
|
|
|
|
for cmd in git inotifywait; do
|
|
|
|
is_command $cmd || { echo "Error: Required command '$cmd' not found." >&2; exit 1; }
|
|
|
|
done
|
|
|
|
unset cmd
|
2012-11-27 09:04:20 +00:00
|
|
|
|
|
|
|
|
2012-11-30 23:35:08 +00:00
|
|
|
# These two strings are used to construct the commit comment
|
2012-12-03 21:30:15 +00:00
|
|
|
# They're glued together like "<CCPREPEND>(<DATE&TIME>)<CCAPPEND>"
|
2012-11-30 23:35:08 +00:00
|
|
|
# If you don't want to add text before and/or after the date/time, simply
|
2012-12-03 21:30:15 +00:00
|
|
|
# set them to empty strings
|
2012-11-19 20:42:52 +00:00
|
|
|
CCPREPEND="Scripted auto-commit on change "
|
|
|
|
CCAPPEND=" by gitwatch.sh"
|
|
|
|
|
2012-10-20 11:49:53 +00:00
|
|
|
IN=$(readlink -f "$1")
|
|
|
|
|
|
|
|
if [ -d $1 ]; then
|
2012-12-02 23:29:26 +00:00
|
|
|
TARGETDIR=$(sed -e "s/\/*$//" <<<"$IN") # dir to CD into before using git commands: trim trailing slash, if any
|
2012-11-30 23:35:08 +00:00
|
|
|
INCOMMAND="inotifywait --exclude=\"^${TARGETDIR}/.git\" -qqr -e close_write,moved_to,delete $TARGETDIR" # construct inotifywait-commandline
|
|
|
|
GITADD="." # add "." (CWD) recursively to index
|
2012-12-02 22:49:38 +00:00
|
|
|
GITINCOMMAND="-a" # add -a switch to "commit" call just to be sure
|
2012-10-20 11:49:53 +00:00
|
|
|
elif [ -f $1 ]; then
|
2012-12-03 19:00:08 +00:00
|
|
|
TARGETDIR=$(dirname "$IN") # dir to CD into before using git commands: extract from file name
|
2012-11-30 23:35:08 +00:00
|
|
|
INCOMMAND="inotifywait -qq -e close_write,moved_to,delete $IN" # construct inotifywait-commandline
|
|
|
|
GITADD="$IN" # add only the selected file to index
|
|
|
|
GITINCOMMAND="" # no need to add anything more to "commit" call
|
2012-10-20 11:49:53 +00:00
|
|
|
else
|
2012-12-02 23:03:51 +00:00
|
|
|
echo >&2 "Error: The target is neither a regular file nor a directory."
|
|
|
|
exit 1
|
2012-10-20 11:49:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
while true; do
|
2012-11-30 23:35:08 +00:00
|
|
|
$INCOMMAND # wait for changes
|
|
|
|
sleep 2 # wait 2 more seconds to give apps time to write out all changes
|
2012-12-02 23:29:26 +00:00
|
|
|
DATE=$(date "+%Y-%m-%d %H:%M:%S") # construct date-time string
|
2012-11-30 23:35:08 +00:00
|
|
|
cd $TARGETDIR # CD into right dir
|
|
|
|
git add $GITADD # add file(s) to index
|
2012-12-02 22:49:38 +00:00
|
|
|
git commit $GITINCOMMAND -m"${CCPREPEND}(${DATE})${CCAPPEND}" # construct commit message and commit
|
2012-11-28 00:02:11 +00:00
|
|
|
|
2012-11-30 23:35:08 +00:00
|
|
|
if [ -n "$REMOTE" ]; then # are we pushing to a remote?
|
|
|
|
if [ -z "$BRANCH" ]; then # Do we have a branch set to push to ?
|
2012-12-02 22:51:42 +00:00
|
|
|
git push $REMOTE # Branch not set, push to remote without a branch
|
|
|
|
else
|
2012-11-30 23:35:08 +00:00
|
|
|
git push $REMOTE $BRANCH # Branch set, push to the remote with the given branch
|
2012-11-28 00:02:11 +00:00
|
|
|
fi
|
|
|
|
fi
|
2012-10-20 11:49:53 +00:00
|
|
|
done
|
2012-11-30 23:35:08 +00:00
|
|
|
|