mirror of
https://github.com/kazhala/dotbare
synced 2024-11-16 00:12:47 +00:00
113 lines
4.6 KiB
Bash
Executable File
113 lines
4.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# untrack selected files
|
|
#
|
|
# @params
|
|
# Globals
|
|
# ${mydir}: current dir of the script
|
|
# ${track_type}: determine method to use for untrack, possible values: untrack, temp, resume
|
|
# ${confirm}: user confirm status
|
|
# ${selected_files}: arrays of user selected_files for operation
|
|
# Arguments
|
|
# -h|--help: display help message and exit
|
|
# -t|--temp: temporarily untrack files
|
|
# -r|--resume: resume track of temp untracked files
|
|
# -y|--yes: confirm action by default and skip confirmation
|
|
|
|
set -e
|
|
set -f
|
|
|
|
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source "${mydir}"/../helper/set_variable.sh
|
|
source "${mydir}"/../helper/git_query.sh
|
|
source "${mydir}"/../helper/get_confirmation.sh
|
|
|
|
function usage() {
|
|
echo -e "Usage: dotbare funtrack [-h] [-t] [-r] [-y] ...
|
|
|
|
Untrack selected files from git.
|
|
|
|
Default: list all tracked files and permanently untrack the selected files (using git rm --cached filename).
|
|
|
|
Files will be remove from index while keeping the file in your current system.
|
|
However, when your other computers pull down the changes, the untracked files will be deleted.
|
|
Make sure to run dotbare fbackup before pulling down the changes.
|
|
|
|
Alternatively use the -t flag (using git update-index --assume-unchanged [path]) to temporarily
|
|
untrack a file but keeping the files when other computers pull down the changes.
|
|
More information please refer to dotbare's github.
|
|
|
|
Optional arguments:
|
|
-h, --help\t\tshow this help message and exit.
|
|
-t, --temp\t\tlist all tracked files and temporarily ignore changes of the selected files.
|
|
-r, --resume\t\tlist all tracked files and resume tracking changes of the selected files.
|
|
-y, --yes\t\tacknowledge all actions that will be taken and skip confirmation."
|
|
}
|
|
|
|
track_type="untrack"
|
|
selected_files=()
|
|
confirm=""
|
|
|
|
while [[ "$#" -gt 0 ]]; do
|
|
case "$1" in
|
|
-t|--temp)
|
|
track_type="temp"
|
|
shift
|
|
;;
|
|
-r|--resume)
|
|
track_type="retrack"
|
|
shift
|
|
;;
|
|
-y|--yes)
|
|
confirm='y'
|
|
shift
|
|
;;
|
|
-h|--help)
|
|
usage
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Invalid option: $1" >&2
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
while IFS= read -r line; do
|
|
selected_files+=("${line}")
|
|
done < <(get_git_file "select files to untrack")
|
|
[[ "${#selected_files[@]}" -eq 0 ]] && exit 1
|
|
|
|
if [[ "${track_type}" == "temp" ]]; then
|
|
[[ -z "${confirm}" ]] && echo "(dryrun) dotbare update-index --assume-unchanged" "${selected_files[@]}"
|
|
[[ -z "${confirm}" ]] && confirm=$(get_confirmation "Files will be temporarily stop being tracked for changes, continue?")
|
|
[[ "${confirm}" != 'y' ]] && exit 1
|
|
git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" update-index --assume-unchanged "${selected_files[@]}"
|
|
echo -e " "
|
|
echo "Selected files are temporarily untracked by git, use dotbare funtrack -r to continue tracking changes."
|
|
echo "Although dotbare funtrack -t won't delete the files on other machines, it is not the recommended way to untrack files."
|
|
echo "dotbare funtrack -t is using git update-index --assume-unchanged under the hood"
|
|
echo "Please refer to git update-index official documentation for more details or visit dotbare's github page"
|
|
elif [[ "${track_type}" == "retrack" ]]; then
|
|
[[ -z "${confirm}" ]] && echo "(dryrun) dotbare update-index --no-assume-unchanged" "${selected_files[@]}"
|
|
[[ -z "${confirm}" ]] && confirm=$(get_confirmation "Files will resume being tracked by git, continue?")
|
|
[[ "${confirm}" != 'y' ]] && exit 1
|
|
git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" update-index --no-assume-unchanged "${selected_files[@]}"
|
|
echo " "
|
|
echo "Selected files are being resumed for tracking by git."
|
|
echo "Although dotbare funtrack -t won't delete the files on other machines, it is not the recommended way to untrack files."
|
|
echo "dotbare funtrack -t is using git update-index --assume-unchanged under the hood"
|
|
echo "Please refer to git update-index official documentation for more details or visit dotbare's github page"
|
|
else
|
|
[[ -z "${confirm}" ]] && echo "(dryrun) dotbare rm --cached" "${selected_files[@]}"
|
|
[[ -z "${confirm}" ]] && confirm=$(get_confirmation "Untrack the selected files?")
|
|
[[ "${confirm}" != 'y' ]] && exit 1
|
|
git --git-dir="${DOTBARE_DIR}" --work-tree="${DOTBARE_TREE}" rm --cached "${selected_files[@]}"
|
|
echo -e " "
|
|
echo "Selected files are being untracked by git, make sure to run dotbare fbackup on your other systems."
|
|
echo "When other systems pull down this change, selected files will be deleted on other systems."
|
|
echo "This is the default behavior of git rm --cached."
|
|
echo "Please refer to git rm official documentation for more details or visit dotbare's github page"
|
|
fi
|