diff --git a/modules/git/README.md b/modules/git/README.md index 8bb9be4..3fd6f6b 100644 --- a/modules/git/README.md +++ b/modules/git/README.md @@ -160,7 +160,7 @@ Aliases - `gRx` removes a remote. - `gRm` renames a remote. - `gRu` fetches remotes updates. - - `gRc` deletes all stale remote tracking branches. + - `gRp` prunes all stale remote tracking branches. - `gRs` displays information about a given remote. - `gRb` opens a remote on [GitHub][3] in the default browser. diff --git a/modules/git/alias.zsh b/modules/git/alias.zsh index 173f619..09bb5a1 100644 --- a/modules/git/alias.zsh +++ b/modules/git/alias.zsh @@ -138,7 +138,7 @@ alias gRa='git remote add' alias gRx='git remote rm' alias gRm='git remote rename' alias gRu='git remote update' -alias gRc='git remote prune' +alias gRp='git remote prune' alias gRs='git remote show' alias gRb='git-hub-browse'