mirror of
https://github.com/kazhala/dotbare
synced 2024-11-06 09:20:25 +00:00
98 lines
3.0 KiB
Bash
Executable File
98 lines
3.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# init the git bare repo
|
|
#
|
|
# @params
|
|
# Globals
|
|
# ${mydir}: current dir of the script
|
|
# ${confirm}: confirm status of the user
|
|
# Arguments
|
|
# -h: show help message and exit
|
|
# -u: specify remote dotfiles url to init
|
|
|
|
set -e
|
|
set -f
|
|
|
|
mydir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source "${mydir}"/../helper/set_variable.sh
|
|
source "${mydir}"/../helper/get_confirmation.sh
|
|
|
|
function usage() {
|
|
echo -e "Usage: dotbare finit [-h] [-u URL] ...\n"
|
|
echo -e "Init the git bare repository if doesn't exist"
|
|
# shellcheck disable=SC2016
|
|
echo -e 'The bare repository will be initialised under ${DOTBARE_DIR}, default to $HOME/.cfg if not set'
|
|
# shellcheck disable=SC2016
|
|
echo -e 'It will track ${DOTBARE_TREE}, default to $HOME if not set\n'
|
|
echo -e "optional arguments:"
|
|
echo -e " -h\t\tshow this help message and exit"
|
|
echo -e " -u URL\tmigrate existing dotfiles from the git URL to current system"
|
|
}
|
|
|
|
remote_url=""
|
|
while getopts ":hu:" opt; do
|
|
case "$opt" in
|
|
u)
|
|
remote_url="${OPTARG}"
|
|
break
|
|
;;
|
|
h)
|
|
usage
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Invalid option: ${OPTARG}" >&2
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ -z "${remote_url}" ]]; then
|
|
echo "modify DOTBARE_DIR and DOTBARE_TREE to customize location, more information run dotbare finit -h"
|
|
echo "git bare repository will be initialised at ${DOTBARE_DIR}"
|
|
echo "git bare repository will be tracking ${DOTBARE_TREE}"
|
|
[[ -z "${confirm}" ]] && confirm=$(get_confirmation)
|
|
[[ "${confirm}" != 'y' ]] && exit 1
|
|
|
|
if [[ -d "${DOTBARE_DIR}" ]]; then
|
|
echo "${DOTBARE_DIR} already exist"
|
|
exit 1
|
|
else
|
|
git init --bare "${DOTBARE_DIR}"
|
|
/usr/bin/git --git-dir "${DOTBARE_DIR}" --work-tree "${DOTBARE_TREE}" \
|
|
config --local status.showUntrackedFiles no
|
|
fi
|
|
else
|
|
[[ ! -d "${DOTBARE_TREE}" ]] && mkdir -p "${DOTBARE_TREE}"
|
|
cd "${DOTBARE_TREE}"
|
|
if [[ -f ".gitignore" ]]; then
|
|
pattern=$(basename "${DOTBARE_DIR}")
|
|
pattern="^${pattern}$"
|
|
exists=$(awk -v pattern="${pattern}" '{ if ($0 ~ pattern) { print $0; } }' .gitignore)
|
|
[[ -z "${exists}" ]] && basename "${DOTBARE_DIR}" >> .gitignore
|
|
else
|
|
basename "${DOTBARE_DIR}" >> .gitignore
|
|
fi
|
|
git clone --bare "${remote_url}" "${DOTBARE_DIR}"
|
|
if ! /usr/bin/git --git-dir "${DOTBARE_DIR}" --work-tree "${DOTBARE_TREE}" checkout 2> /dev/null; then
|
|
echo "File checkout failed"
|
|
echo "Backing up pre-existing dotfiles ..."
|
|
/usr/bin/git --git-dir "${DOTBARE_DIR}" --work-tree "${DOTBARE_TREE}" checkout 2>&1 \
|
|
| awk '{
|
|
if ($0 ~ /[\t].*/) {
|
|
gsub(/^[\t]/, "", $0)
|
|
print $0
|
|
}
|
|
}' \
|
|
| xargs -I __ "${mydir}"/fbackup -p __ -m
|
|
echo "dotfiles backup succeeded, checkout continue"
|
|
/usr/bin/git --git-dir "${DOTBARE_DIR}" --work-tree "${DOTBARE_TREE}" checkout
|
|
/usr/bin/git --git-dir "${DOTBARE_DIR}" --work-tree "${DOTBARE_TREE}" \
|
|
config --local status.showUntrackedFiles no
|
|
fi
|
|
echo "File checkout succeeded"
|
|
echo "Migration completed"
|
|
exit 0
|
|
fi
|