From cfafb5d694b370c9301dda698066d8ec752cc814 Mon Sep 17 00:00:00 2001 From: rkiel Date: Sat, 13 Jul 2019 07:22:10 -0400 Subject: [PATCH] aliases: added show and log --- dotfiles/bashrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dotfiles/bashrc b/dotfiles/bashrc index 6a3d70f..8e9f861 100644 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -20,11 +20,14 @@ alias c='feature commit' alias co='git checkout' alias d='clear; git diff -w' alias l="git log --graph --date=short --pretty=format:'%C(yellow)%h %C(white)%ad %C(black)[%C(green)%an%C(black)] %C(blue)%s%C(yellow)%d'" +alias log='git log -w -u' alias m='feature merge' alias r='feature rebase' alias s='git status; echo; echo STASH:; git stash list; echo' +alias show='git show -w' alias x='xgrep' + alias sfind='find . -not \( -type d -name .git -prune \) -not \( -type d -name node_modes -prune \) -and \( -type f \)|sort -f' alias sgrep='find . -not \( -type d -name .git -prune \) -not \( -type d -name node_modes -prune \) -and \( -type f \)|sort -f|xargs grep --color=always' alias cgrep='grep --color=always'