From 2409726b84dca7506d587b81c418b31b7da8d6f8 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Fri, 11 Dec 2020 12:25:25 +0100 Subject: [PATCH] feat(bash): add short aliases for vim and git --- roles/bash/files/profile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/roles/bash/files/profile b/roles/bash/files/profile index 5303c3d..3210986 100644 --- a/roles/bash/files/profile +++ b/roles/bash/files/profile @@ -179,6 +179,19 @@ alias lla="ls -la" alias llc="lsc -l" alias llac="lsc -la" +alias g='git' +alias ga='git a' +alias gc='git commit' +alias gd='git d' +alias gcm='git cm' +alias gl='git l' +alias gla='git la' +alias gln='git ln' +alias gs='git s' +alias gss='git ss' + +alias v='vim' + alias grep="grep --color=auto" alias egrep="egrep --color=auto" alias fgrep="fgrep --color=auto"