From f6629e8343d5ee2eeb71df757ba9601fcc9ba3b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Brey?= Date: Mon, 22 May 2017 10:18:15 +0200 Subject: [PATCH] aliases: git: change 'gw' to 'gwc' to avoid collision with gradle plugin * 'gw' is currently aliased to 'git whatchanged' but that collides with the gradle wrapper plugin, which defines a 'gw' function. --- aliases/available/git.aliases.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aliases/available/git.aliases.bash b/aliases/available/git.aliases.bash index 878fb286..95ef6062 100644 --- a/aliases/available/git.aliases.bash +++ b/aliases/available/git.aliases.bash @@ -58,7 +58,7 @@ alias gll='git log --graph --pretty=oneline --abbrev-commit' alias gg="git log --graph --pretty=format:'%C(bold)%h%Creset%C(magenta)%d%Creset %s %C(yellow)<%an> %C(cyan)(%cr)%Creset' --abbrev-commit --date=relative" alias ggs="gg --stat" alias gsl="git shortlog -sn" -alias gw="git whatchanged" +alias gwc="git whatchanged" alias gt="git tag" alias gta="git tag -a" alias gtd="git tag -d"