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

108 lines
3.4 KiB
Plaintext
Raw Normal View History

2020-04-11 06:38:49 +00:00
#!/bin/bash
#
2020-04-24 07:26:45 +00:00
# checkout files/commit/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
2020-04-24 07:26:45 +00:00
# and then select a specific commit to checkout against
2020-04-14 07:17:42 +00:00
# ${branch}: checkout branch
2020-04-24 07:26:45 +00:00
# ${commit}: checkout commit
2020-04-14 07:17:42 +00:00
# ${selected_branch}: selected_branch to switch
# ${selected_files}: selected_files to checkout to the version in HEAD
2020-04-17 07:55:22 +00:00
# ${selected_commit}: selected commit to checkout
2020-04-24 07:26:45 +00:00
# ${confirm}: confirm status of the user
2020-04-11 06:38:49 +00:00
# Arguments
2020-04-14 08:16:14 +00:00
# -h: show help message
# -a: search all files instead of just the modified files
# -b: search branch and checkout branch
2020-04-24 07:26:45 +00:00
# -c: search commit and checkout commit
2020-04-11 06:38:49 +00:00
set -e
2020-04-24 07:26:45 +00:00
set -f
2020-04-11 06:38:49 +00:00
mydir="${0%/*}"
2020-04-14 07:17:42 +00:00
source "${mydir}"/../helper/set_variable.sh
source "${mydir}"/../helper/get_confirmation.sh
2020-04-16 05:43:33 +00:00
source "${mydir}"/../helper/git_query.sh
2020-04-11 06:38:49 +00:00
function usage() {
2020-04-14 08:16:14 +00:00
echo -e "Usage: dotbare fcheckout [-h] [-a] [-b] [-c] ...\n"
2020-04-24 07:26:45 +00:00
echo -e "Checkout files/commit/branch using fzf"
2020-04-17 06:10:59 +00:00
echo -e "By default: checkout files back to HEAD (Reset changes back to HEAD)\n"
2020-04-11 06:38:49 +00:00
echo -e "optional arguments:"
echo -e " -h\t\tshow this help message and exit"
2020-04-17 06:10:59 +00:00
echo -e " -a\t\tsearch all files and select a commit to checkout for selected files"
2020-04-14 08:16:14 +00:00
echo -e " -b\t\tcheckout branch"
2020-04-17 06:10:59 +00:00
echo -e " -c\t\tcheckout commit"
2020-04-11 06:38:49 +00:00
}
all_files=""
2020-04-14 06:22:02 +00:00
branch=""
2020-04-24 07:26:45 +00:00
commit=""
2020-04-11 06:38:49 +00:00
2020-04-24 07:26:45 +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)
2020-04-24 07:26:45 +00:00
commit='true'
2020-04-14 07:55:55 +00:00
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
selected_branch=$(get_branch 'Select a branch to checkout')
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
2020-04-24 07:26:45 +00:00
elif [[ -n "${commit}" ]]; then
# checkout commit
2020-04-17 07:55:22 +00:00
selected_commit=$(get_commit 'Select a commit to checkout')
[[ -z "${selected_commit}" ]] && exit 0
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout "${selected_commit}"
2020-04-14 07:55:55 +00:00
exit 0
else
2020-04-14 08:14:22 +00:00
# checkout files (reset file changes back to HEAD)
2020-04-17 06:10:59 +00:00
if [[ -z "${all_files}" ]]; then
selected_files=$(get_modified_file 'select a file to checkout version in HEAD' | tr '\n' ' ')
2020-04-17 06:10:59 +00:00
[[ -z "${selected_files}" ]] && exit 0
echo "(dryrun) dotbare checkout -- ${selected_files}"
2020-04-17 05:50:00 +00:00
confirm=$(get_confirmation "Confirm?")
[[ "${confirm}" != 'y' ]] && exit 0
2020-04-17 07:55:22 +00:00
# shellcheck disable=SC2086
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout -- ${selected_files}
2020-04-17 05:50:00 +00:00
else
selected_files=$(get_git_file 'select a file to checkout' | tr '\n' ' ')
echo "${selected_files}"
2020-04-17 06:10:59 +00:00
[[ -z "${selected_files}" ]] && exit 0
2020-04-17 05:50:00 +00:00
# continue select a commit and then checkout the file back to the selected commit
2020-04-17 07:55:22 +00:00
selected_commit=$(get_commit 'select the target commit' "${selected_files}")
[[ -z "${selected_commit}" ]] && exit 0
echo "(dryrun) dotbare checkout ${selected_commit} -- ${selected_files}"
2020-04-17 05:50:00 +00:00
confirm=$(get_confirmation "Confirm?")
[[ "${confirm}" != 'y' ]] && exit 0
2020-04-17 07:55:22 +00:00
# shellcheck disable=SC2086
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout "${selected_commit}" ${selected_files}
2020-04-17 05:50:00 +00:00
fi
2020-04-11 06:38:49 +00:00
fi