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 # add a new remote repository
alias grma="\ grma() {
git \ git \
remote \ remote \
add \ add \
" "${@}"
}
# list remote repositories # list remote repositories
alias grml="\ grml() {
git \ git \
remote \ remote \
--verbose \ --verbose \
" "${@}"
}
# show a connection to a repository
alias grms="\
git \
remote \
show \
"
# set the location of the remote repository # set the location of the remote repository
alias grmsu="\ grms() {
git \ git \
remote \ remote \
set-url \ set-url \
" "${@}"
}
# remove file(s) from index or move current branch pointer # remove file(s) from index or move current branch pointer
alias grs="\ alias grs="\