From a8c9a9790870bcf5ae514de4948d71053cb12761 Mon Sep 17 00:00:00 2001 From: pika Date: Wed, 22 May 2024 18:34:31 +0200 Subject: [PATCH] minor changes --- functions/git.fish | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/functions/git.fish b/functions/git.fish index 49d9675..4c5496f 100644 --- a/functions/git.fish +++ b/functions/git.fish @@ -1,10 +1,9 @@ function gsa - echo "-- enter the repository to add as a submodule: https://" + echo "-- enter the repository to add as a submodule --" read -S repo - echo "-- enter the branch to checkout (main/master..): " + echo "-- enter the branch to checkout (main/master..) --" 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 -S path - echo "git submodule add --branch $branch --name $path https://$repo" + echo "git submodule add --branch $branch --name $path $repo" end -