grm
This commit is contained in:
parent
e93728cdc5
commit
ab2d3d9141
1 changed files with 25 additions and 6 deletions
|
@ -196,20 +196,39 @@ alias grbf='git rebase --no-ff'
|
||||||
# rebase interactively
|
# rebase interactively
|
||||||
alias grbi='git rebase --interactive'
|
alias grbi='git rebase --interactive'
|
||||||
|
|
||||||
# list all remote repositories
|
# remove and add to index
|
||||||
alias grm='git remote'
|
alias grm="\
|
||||||
|
git \
|
||||||
|
rm \
|
||||||
|
"
|
||||||
|
|
||||||
# add a new remote repository
|
# add a new remote repository
|
||||||
alias grma='git remote add'
|
alias grma="\
|
||||||
|
git \
|
||||||
|
remote \
|
||||||
|
add \
|
||||||
|
"
|
||||||
|
|
||||||
# list remote repositories
|
# list remote repositories
|
||||||
alias grml='git remote --verbose'
|
alias grml="\
|
||||||
|
git \
|
||||||
|
remote \
|
||||||
|
--verbose \
|
||||||
|
"
|
||||||
|
|
||||||
# show a connection to a repository
|
# show a connection to a repository
|
||||||
alias grms='git remote show'
|
alias grms="\
|
||||||
|
git \
|
||||||
|
remote \
|
||||||
|
show \
|
||||||
|
"
|
||||||
|
|
||||||
# set the location of the remote repository
|
# set the location of the remote repository
|
||||||
alias grmu='git remote set-url'
|
alias grmsu="\
|
||||||
|
git \
|
||||||
|
remote \
|
||||||
|
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