This commit is contained in:
Marc Beninca 2024-11-17 02:53:03 +01:00
parent af70985d82
commit 79b5c724e4
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

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