addet better functionality

This commit is contained in:
pika 2024-05-23 20:06:54 +02:00
parent e6ad28ed36
commit b0b5cc00cc

View file

@ -15,11 +15,11 @@ function gsa
echo "-- enter the relative path, where the submodule will be cloned to. (don't use fist / or ./) --" echo "-- enter the relative path, where the submodule will be cloned to. (don't use fist / or ./) --"
read -l -S path read -l -S path
echo "-- enter a name for the submodule --" # echo "-- enter a name for the submodule --"
read -l name # read -l name
# ─< Ask the user for confirmation if the constructed command looks correct >─────────────── # ─< Ask the user for confirmation if the constructed command looks correct >───────────────
echo "git submodule add --branch $branch --name $name $repo $path" echo "git submodule add --branch $branch $repo $path"
echo "-- does this command look right to you? [y/n] --" echo "-- does this command look right to you? [y/n] --"
read -l comm read -l comm
@ -27,7 +27,8 @@ function gsa
switch $comm switch $comm
# ─< If the user inputs 'y' or 'Y', execute the git submodule add command >───────────────── # ─< If the user inputs 'y' or 'Y', execute the git submodule add command >─────────────────
case 'y' 'Y' case 'y' 'Y'
git submodule add --branch $branch --name $name $repo $path git submodule add --branch $branch $repo $path
git submodule update --init --recursive
git add . git add .
git commit -m "Addet $name as a submodule" git commit -m "Addet $name as a submodule"
git push git push