1
0
Fork 0

Add an alias to set the URL of a remote

pull/472/head
Joel Kuzmarski 11 years ago
parent 959887013d
commit ee65a96b22

@ -159,6 +159,7 @@ Aliases
- `gRa` adds a new remote. - `gRa` adds a new remote.
- `gRx` removes a remote. - `gRx` removes a remote.
- `gRm` renames a remote. - `gRm` renames a remote.
- `gRe` sets the URL of a remote.
- `gRu` fetches remotes updates. - `gRu` fetches remotes updates.
- `gRp` prunes all stale remote tracking branches. - `gRp` prunes all stale remote tracking branches.
- `gRs` displays information about a given remote. - `gRs` displays information about a given remote.

@ -3,6 +3,7 @@
# #
# Authors: # Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com> # Sorin Ionescu <sorin.ionescu@gmail.com>
# Joel Kuzmarski <leoj3n@gmail.com>
# #
# #
@ -137,6 +138,7 @@ alias gRl='git remote --verbose'
alias gRa='git remote add' alias gRa='git remote add'
alias gRx='git remote rm' alias gRx='git remote rm'
alias gRm='git remote rename' alias gRm='git remote rename'
alias gRe='git remote set-url'
alias gRu='git remote update' alias gRu='git remote update'
alias gRp='git remote prune' alias gRp='git remote prune'
alias gRs='git remote show' alias gRs='git remote show'

Loading…
Cancel
Save