diff --git a/shell/alias/git.sh b/shell/alias/git.sh index 3517ea0..87a4978 100644 --- a/shell/alias/git.sh +++ b/shell/alias/git.sh @@ -404,32 +404,28 @@ grm() { } # add a new remote repository -alias grma="\ -git \ -remote \ -add \ -" +grma() { + git \ + remote \ + add \ + "${@}" +} # list remote repositories -alias grml="\ -git \ -remote \ ---verbose \ -" - -# show a connection to a repository -alias grms="\ -git \ -remote \ -show \ -" +grml() { + git \ + remote \ + --verbose \ + "${@}" +} # set the location of the remote repository -alias grmsu="\ -git \ -remote \ -set-url \ -" +grms() { + git \ + remote \ + set-url \ + "${@}" +} # remove file(s) from index or move current branch pointer alias grs="\