2020-04-06 05:07:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Stage the selected file to git bare repo
|
|
|
|
#
|
|
|
|
# @params
|
|
|
|
# Globals
|
2020-04-07 06:51:07 +00:00
|
|
|
# ${mydir}: string, current directory of the executing script
|
2020-04-06 05:07:59 +00:00
|
|
|
# ${new_file}: new file path to stage
|
|
|
|
# ${new_folder}: new folder to stage
|
|
|
|
# ${stage_file}: changed file to stage
|
|
|
|
|
2020-04-10 05:05:33 +00:00
|
|
|
set -e
|
|
|
|
|
2020-04-07 05:29:09 +00:00
|
|
|
mydir="${0%/*}"
|
|
|
|
source "${mydir}"/../helper/search_file
|
2020-04-07 06:51:07 +00:00
|
|
|
source "${mydir}"/../helper/set_variable
|
2020-04-07 04:45:58 +00:00
|
|
|
|
|
|
|
function usage() {
|
|
|
|
echo -e "Usage: dotbare fadd [-h] [-f] [-d] ...\n"
|
|
|
|
echo -e "Stage the selected file to the dotfile gitbare repo"
|
|
|
|
echo -e "Press escape to stop staging file\n"
|
|
|
|
echo -e "optional arguments:"
|
|
|
|
echo -e " -h\t\tshow this help message and exit"
|
|
|
|
echo -e " -f\t\tselect a file in current directory and stage it"
|
|
|
|
echo -e " -d\t\tselect a entire folder to stage"
|
|
|
|
}
|
|
|
|
|
2020-04-06 05:07:59 +00:00
|
|
|
function stage_file() {
|
|
|
|
local file=$1
|
|
|
|
if [[ -z "${file}" ]]
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
else
|
2020-04-07 04:45:58 +00:00
|
|
|
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" add "${file}"
|
2020-04-06 05:07:59 +00:00
|
|
|
echo "${file} staged successfully"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
new_file=''
|
|
|
|
new_folder=''
|
|
|
|
|
|
|
|
while getopts ":fhd" opt
|
|
|
|
do
|
|
|
|
case "$opt" in
|
|
|
|
f)
|
2020-04-07 05:38:01 +00:00
|
|
|
new_file=$(search_file 'f')
|
2020-04-06 05:07:59 +00:00
|
|
|
[[ -z "${new_file}" ]] && exit 1
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
h)
|
2020-04-07 04:45:58 +00:00
|
|
|
usage
|
2020-04-06 05:07:59 +00:00
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
d)
|
2020-04-07 05:38:01 +00:00
|
|
|
new_folder=$(search_file 'd')
|
2020-04-06 05:07:59 +00:00
|
|
|
[[ -z "${new_folder}" ]] && exit 1
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Invalid option: ${OPTARG}" >&2
|
2020-04-07 04:45:58 +00:00
|
|
|
usage
|
2020-04-06 05:07:59 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [[ -n "${new_file}" ]]; then
|
|
|
|
while IFS= read -r line; do
|
|
|
|
stage_file "${line}"
|
|
|
|
done <<< "${new_file}"
|
|
|
|
elif [[ -n "${new_folder}" ]]; then
|
2020-04-07 05:38:01 +00:00
|
|
|
while IFS= read -r line; do
|
|
|
|
stage_file "${line}"
|
|
|
|
done <<< "${new_folder}"
|
2020-04-06 05:07:59 +00:00
|
|
|
else
|
2020-04-07 06:11:57 +00:00
|
|
|
selected_files=$(/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" diff --name-status | \
|
2020-04-10 06:09:08 +00:00
|
|
|
awk '{print "\033[31m" $1 " " $2}' | \
|
|
|
|
fzf --header='select files to stage' --multi --preview "echo {} | awk '{print \$2}' | \
|
|
|
|
xargs -I __ /usr/bin/git --git-dir=${DOTBARE_DIR} --work-tree=${DOTBARE_TREE} diff --color=always ${DOTBARE_TREE}/__" | \
|
|
|
|
awk -v home="${DOTBARE_TREE}" '{print home "/" $2}')
|
2020-04-06 05:07:59 +00:00
|
|
|
while IFS= read -r line; do
|
|
|
|
stage_file "${line}"
|
|
|
|
done <<< "${selected_files}"
|
|
|
|
fi
|