remote
This commit is contained in:
parent
af70985d82
commit
79b5c724e4
1 changed files with 18 additions and 22 deletions
|
@ -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="\
|
||||||
|
|
Loading…
Reference in a new issue