telegram-bot-bash/dev/git-add.sh

40 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
# file: git-add.sh
#
# works together with git pre-push.sh and ADD all changed files since last push
#### $$VERSION$$ v1.25-dev-50-g427e4df
# magic to ensure that we're always inside the root of our application,
# no matter from which directory we'll run script
GIT_DIR=$(git rev-parse --git-dir 2>/dev/null)
2021-01-05 10:40:28 +00:00
if [ "${GIT_DIR}" != "" ] ; then
cd "${GIT_DIR}/.." || exit 1
else
2021-01-01 10:27:54 +00:00
printf "Sorry, no git repository %s\n" "$(pwd)" && exit 1
fi
2021-01-01 10:27:54 +00:00
[ ! -f .git/.lastcommit ] && printf "No previous commit or hooks not installed, use \"git add\" instead ... Abort\n" && exit
2019-05-01 10:15:10 +00:00
set +f
2021-01-03 11:06:39 +00:00
FILES="$(find ./* -newer .git/.lastcommit| grep -v -e 'DIST\/' -e 'STANDALONE\/' -e 'JSON.sh')"
set -f
# FILES="$(find ./* -newer .git/.lastpush)"
2021-01-01 10:27:54 +00:00
[ "${FILES}" = "" ] && printf "Nothing changed since last commit ...\n" && exit
2019-04-25 13:39:42 +00:00
# run pre_commit on files
dev/hooks/pre-commit.sh
2021-01-01 10:27:54 +00:00
printf "Add files to repo: "
# shellcheck disable=SC2086
2019-04-25 13:39:42 +00:00
for file in ${FILES}
do
[ -d "${file}" ] && continue
2021-01-01 10:27:54 +00:00
printf "%s" "${file} "
2019-04-25 13:39:42 +00:00
done
2021-01-01 10:27:54 +00:00
printf " - Done.\n"
# stay with "." for (re)moved files!
git add .