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
|
||||
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="\
|
||||
|
|
Loading…
Reference in a new issue