2019-04-25 12:45:16 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# file: git-add.sh
|
|
|
|
#
|
2019-04-25 13:17:35 +00:00
|
|
|
# works together with git pre-push.sh and ADD all changed files since last push
|
2019-04-25 12:45:16 +00:00
|
|
|
|
2020-06-26 14:23:16 +00:00
|
|
|
#### $$VERSION$$ v0.98-pre2-0-ga597303
|
2019-04-25 12:45:16 +00:00
|
|
|
|
|
|
|
# magic to ensure that we're always inside the root of our application,
|
|
|
|
# no matter from which directory we'll run script
|
2019-05-11 10:07:06 +00:00
|
|
|
GIT_DIR=$(git rev-parse --git-dir 2>/dev/null)
|
|
|
|
if [ "$GIT_DIR" != "" ] ; then
|
|
|
|
cd "$GIT_DIR/.." || exit 1
|
|
|
|
else
|
|
|
|
echo "Sorry, no git repository $(pwd)" && exit 1
|
|
|
|
fi
|
2019-04-25 12:45:16 +00:00
|
|
|
|
2019-05-02 13:14:18 +00:00
|
|
|
[ ! -f .git/.lastpush ] && echo "No push or hooks not installed, use \"git add\" instead ... Abort" && exit
|
2019-05-01 10:15:10 +00:00
|
|
|
|
2019-04-25 12:45:16 +00:00
|
|
|
FILES="$(find ./* -newer .git/.lastpush)"
|
2019-05-01 10:15:10 +00:00
|
|
|
[ "${FILES}" = "" ] && echo "Noting changed since last push ... Abort" && exit
|
2019-04-25 12:45:16 +00:00
|
|
|
|
2019-04-25 13:39:42 +00:00
|
|
|
# run pre_commit on files
|
|
|
|
dev/hooks/pre-commit.sh
|
|
|
|
|
|
|
|
echo -n "Add files to repo: "
|
2019-04-25 12:45:16 +00:00
|
|
|
# shellcheck disable=SC2086
|
2019-04-25 13:39:42 +00:00
|
|
|
for file in ${FILES}
|
|
|
|
do
|
|
|
|
[ -d "${file}" ] && continue
|
2019-04-26 09:28:51 +00:00
|
|
|
echo -n "${file} "
|
2019-04-25 13:39:42 +00:00
|
|
|
done
|
2019-04-26 09:28:51 +00:00
|
|
|
git add .
|
2019-04-25 13:39:42 +00:00
|
|
|
echo "done."
|
2019-04-25 12:45:16 +00:00
|
|
|
|