Remove unused var (${remote})

This commit is contained in:
0x1eef 2024-05-11 23:08:03 -03:00
parent e1e9ea0cff
commit 25b305a8fd

View file

@ -9,7 +9,6 @@ git="${localbase}"/bin/git
mode="u=rwX,g=rX,o="
gitdir="$1"
branch="$2"
remote="origin"
##
# functions
@ -33,11 +32,10 @@ if [ ! -e "${gitdir}/.git" ]; then
exit 1
fi
printf "Set new branch: %s\n" "${branch}"
set -x
cd "${gitdir}"
gitexec "fetch origin"
gitexec "checkout ${branch}" ||
gitexec "checkout -t origin/${branch}"
set +x
printf "New branch: %s\n" "${branch}"
printf "[-] New branch: %s\n" "${branch}"