2
0
mirror of https://github.com/kazhala/dotbare synced 2024-11-02 09:40:27 +00:00
dotbare/scripts/fcheckout

116 lines
3.9 KiB
Plaintext
Raw Normal View History

2020-04-11 06:38:49 +00:00
#!/bin/bash
#
2020-04-14 07:17:42 +00:00
# checkout files/commits/branches using fzf
2020-04-11 06:38:49 +00:00
#
# @params
# Globals
2020-04-14 07:17:42 +00:00
# ${mydir}: current directory of the script, used for imports
# ${all_files}: search all tracked files instead of just the modified files
# ${branch}: checkout branch
# ${selected_branch}: selected_branch to switch
# ${selected_files}: selected_files to checkout to the version in HEAD
2020-04-11 06:38:49 +00:00
# Arguments
# -a: search all files instead of just the modified files
# -b: search branch and checkout branch
# -h: show help message
2020-04-11 06:38:49 +00:00
set -e
mydir="${0%/*}"
2020-04-14 07:17:42 +00:00
source "${mydir}"/../helper/set_variable.sh
source "${mydir}"/../helper/get_confirmation.sh
2020-04-11 06:38:49 +00:00
function usage() {
echo -e "Usage: dotbare fcheckout [-h] [-c] [-S] [-H] ...\n"
echo -e "Reset/Unstage the selected staged file"
echo -e "Or reset the commit to certain point\n"
echo -e "optional arguments:"
echo -e " -h\t\tshow this help message and exit"
2020-04-12 10:42:39 +00:00
echo -e " -m\t\tlist modified files only"
2020-04-11 06:38:49 +00:00
}
all_files=""
2020-04-14 06:22:02 +00:00
branch=""
2020-04-14 07:55:55 +00:00
commits=""
2020-04-11 06:38:49 +00:00
2020-04-14 07:55:55 +00:00
while getopts ":habc" opt
2020-04-11 06:38:49 +00:00
do
case "$opt" in
a)
all_files='true'
2020-04-14 07:55:55 +00:00
break
2020-04-11 06:38:49 +00:00
;;
2020-04-14 06:22:02 +00:00
b)
branch='true'
2020-04-14 07:55:55 +00:00
break
;;
c)
commits='true'
break
2020-04-14 06:22:02 +00:00
;;
2020-04-11 06:38:49 +00:00
h)
usage
exit 0
;;
*)
echo "Invalid option: ${OPTARG}" >&2
usage
exit 1
;;
esac
done
if [[ -n "${branch}" ]]; then
2020-04-14 08:14:22 +00:00
# checkout branch
2020-04-14 06:22:02 +00:00
selected_branch=$(/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" branch -a | \
awk '{
2020-04-14 08:14:22 +00:00
if ($0 ~ /\*.*\(HEAD.*/) {
gsub(/\* /, "", $0)
print "\033[32m" $0 "\033[0m"
} else if (match($1, "\\*") != 0) {
2020-04-14 06:22:02 +00:00
print "\033[32m" $2 "\033[0m"
} else {
2020-04-14 08:14:22 +00:00
gsub(/^[ \t]+/, "", $0)
print $0
2020-04-14 06:22:02 +00:00
}
}' | \
fzf --no-multi --header='select a branch to checkout' \
--preview="/usr/bin/git --git-dir=${DOTBARE_DIR} --work-tree=${DOTBARE_TREE} log --oneline --graph --color=always --decorate=short {}")
2020-04-14 07:55:55 +00:00
[[ -z "${selected_branch}" ]] && exit 0
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout "${selected_branch}"
exit 0
elif [[ -n "${commits}" ]]; then
2020-04-14 08:14:22 +00:00
# checkout commits
2020-04-14 07:55:55 +00:00
selected_commits=$(/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" log --oneline --color=always --decorate=short | \
fzf --no-multi --header='select which commit to reset' --preview "echo {} | awk '{print \$1}' | \
xargs -I __ /usr/bin/git --git-dir=${DOTBARE_DIR} --work-tree=${DOTBARE_TREE} show --color=always __" | \
awk '{print $1}')
[[ -z "${selected_commits}" ]] && exit 0
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout "${selected_commits}"
exit 0
else
2020-04-14 08:14:22 +00:00
# checkout files (reset file changes back to HEAD)
2020-04-14 07:55:55 +00:00
if [[ -n "${all_files}" ]]; then
selected_files=$(/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" ls-files --full-name --directory "${DOTBARE_TREE}" | \
fzf --multi --header='select a file to checkout version in HEAD' --preview "head -50 ${DOTBARE_TREE}/{}" | \
awk -v home="${DOTBARE_TREE}" '{print home "/" $0}')
else
selected_files=$(/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" diff --name-status | \
awk '{print "\033[31m" $1 " " $2}' | \
fzf --multi --header='select a file to checkout version in HEAD' \
--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}')
fi
[[ -z "${selected_files}" ]] && exit 0
while IFS= read -r line; do
echo "(dryrun) dotbare checkout -- ${line}"
done <<< "${selected_files}"
confirm=$(get_confirmation "Confirm?")
[[ "${confirm}" != 'y' ]] && exit 0
while IFS= read -r line; do
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout -- "${line}"
echo "${line} checkout success"
done <<< "${selected_files}"
2020-04-11 06:38:49 +00:00
fi