From d4e78d427a4ce10f308b0d209853f712923cf405 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Fri, 3 May 2013 11:25:49 -0400 Subject: [PATCH] Rename alias gRc to gRp --- modules/git/README.md | 2 +- modules/git/alias.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/git/README.md b/modules/git/README.md index 8bb9be42..3fd6f6b7 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 173f619d..09bb5a18 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'