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

108 lines
3.9 KiB
Plaintext
Raw Normal View History

2020-05-11 01:56:27 +00:00
#!/usr/bin/env bash
2020-04-11 06:38:49 +00:00
#
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
# ${action_type}: what type of git commands to use (branch|select|commit|modified)
2020-04-14 07:17:42 +00:00
# ${selected_branch}: selected_branch to switch
# ${selected_files}: selected_files to checkout
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
# -h|--help: show help message
# -s|--select: search all files instead of just the modified files
# -b|--branch: search branch and checkout branch
# -c|--commit: 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
2020-05-13 07:30:54 +00:00
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
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() {
echo -e "Usage: dotbare fcheckout [-h] [-s] [-b] [-c] ...\n"
echo -e "Checkout files/commit/branch using fzf"
echo -e "files: checkout the version in HEAD or in a specific commit (reset files content back to the selected commit)"
echo -e "branch: switch to the selected branch"
echo -e "commit: switch to a specific commit\n"
2020-05-19 07:51:13 +00:00
echo -e "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, --help\t\tshow this help message and exit"
echo -e " -s, --select\t\tsearch all files and select a commit to checkout for selected files"
echo -e " -b, --branch\t\tlist all branch and checkout/switch the selected branch"
echo -e " -c, --commit\t\tlist all commits and checkout selected commit"
2020-04-11 06:38:49 +00:00
}
2020-05-15 08:04:43 +00:00
action_type="modified"
selected_files=()
2020-04-11 06:38:49 +00:00
while [[ "$#" -gt 0 ]]; do
case "$1" in
-s|--select)
action_type="select"
shift
2020-04-11 06:38:49 +00:00
;;
-b|--branch)
2020-05-15 08:04:43 +00:00
action_type="branch"
shift
2020-04-14 07:55:55 +00:00
;;
-c|--commit)
2020-05-15 08:04:43 +00:00
action_type="commit"
shift
2020-05-15 08:04:43 +00:00
;;
-y|--yes)
2020-05-15 08:04:43 +00:00
confirm="y"
shift
2020-04-14 06:22:02 +00:00
;;
-h|--help)
2020-04-11 06:38:49 +00:00
usage
exit 0
;;
*)
echo "Invalid option: $1" >&2
2020-04-11 06:38:49 +00:00
usage
exit 1
;;
esac
done
2020-05-15 08:04:43 +00:00
if [[ "${action_type}" == "branch" ]]; then
2020-04-14 08:14:22 +00:00
# checkout branch
2020-06-23 07:27:12 +00:00
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}"
2020-05-15 08:04:43 +00:00
elif [[ "${action_type}" == "commit" ]]; then
2020-04-24 07:26:45 +00:00
# checkout commit
2020-06-23 07:27:12 +00:00
selected_commit=$(get_commit 'select a commit to checkout')
2020-04-17 07:55:22 +00:00
[[ -z "${selected_commit}" ]] && exit 0
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout "${selected_commit}"
elif [[ "${action_type}" == "modified" ]]; then
# checkout modified file back to version in HEAD
while IFS= read -r line; do
selected_files+=("${line}")
done < <(get_modified_file 'select a file to checkout version in HEAD')
[[ "${#selected_files[@]}" -eq 0 ]] && exit 1
[[ -z "${confirm}" ]] && echo "(dryrun) dotbare checkout --" "${selected_files[@]}"
[[ -z "${confirm}" ]] && confirm=$(get_confirmation "Confirm?")
[[ "${confirm}" != 'y' ]] && exit 1
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout -- "${selected_files[@]}"
elif [[ "${action_type}" == "select" ]]; then
# checkout selected files to a selected commit
while IFS= read -r line; do
selected_files+=("${line}")
done < <(get_git_file 'select a file to checkout')
[[ "${#selected_files[@]}" -eq 0 ]] && exit 1
# continue select a commit and then checkout the file back to the selected commit
selected_commit=$(get_commit 'select the target commit' "${selected_files[@]}")
[[ -z "${selected_commit}" ]] && exit 1
[[ -z "${confirm}" ]] && echo "(dryrun) dotbare checkout ${selected_commit} --" "${selected_files[@]}"
[[ -z "${confirm}" ]] && confirm=$(get_confirmation "Confirm?")
[[ "${confirm}" != 'y' ]] && exit 0
/usr/bin/git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" checkout "${selected_commit}" "${selected_files[@]}"
2020-04-11 06:38:49 +00:00
fi