testing..

This commit is contained in:
pika 2024-05-22 18:24:13 +02:00
parent 5d050cbd36
commit 34ffc411fd

View file

@ -1,10 +1,10 @@
function gsa function gsa
echo "-- enter the repository to add as a submodule: https://" echo "-- enter the repository to add as a submodule: https://"
read repo read -S repo
echo "-- enter the branch to checkout (main/master..): " echo "-- enter the branch to checkout (main/master..): "
read branch read -S branch
echo "-- enter the relative path, where the submodule will be cloned to. (don't use fist /" echo "-- enter the relative path, where the submodule will be cloned to. (don't use fist /"
read path read -S path
echo "git submodule add --branch $branch --name $path $repo" echo "git submodule add --branch $branch --name $path $repo"
end end