mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-15 20:47:08 +00:00
34 lines
840 B
Bash
Executable File
34 lines
840 B
Bash
Executable File
#!/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.30-dev-20-g541a279
|
|
|
|
#shellcheck disable=SC1090
|
|
source "${0%/*}/dev.inc.sh"
|
|
|
|
[ ! -f .git/.lastcommit ] && printf "No previous commit or hooks not installed, use \"git add\" instead ... Abort\n" && exit
|
|
|
|
set +f
|
|
FILES="$(find ./* -newer .git/.lastcommit| grep -v -e 'DIST\/' -e 'STANDALONE\/' -e 'JSON.sh')"
|
|
set -f
|
|
# FILES="$(find ./* -newer .git/.lastpush)"
|
|
[ "${FILES}" = "" ] && printf "Nothing changed since last commit ...\n" && exit
|
|
|
|
# run pre_commit on files
|
|
dev/hooks/pre-commit.sh
|
|
|
|
printf "Add files to repo: "
|
|
# shellcheck disable=SC2086
|
|
for file in ${FILES}
|
|
do
|
|
[ -d "${file}" ] && continue
|
|
printf "%s" "${file} "
|
|
done
|
|
printf " - Done.\n"
|
|
|
|
# stay with "." for (re)moved files!
|
|
git add .
|
|
|