From eb957029f35f2764417cd9a7f401689af85d9d91 Mon Sep 17 00:00:00 2001 From: Jacob Babor Date: Thu, 16 Jul 2026 12:55:48 -0500 Subject: [PATCH] Add git diff command for a very specific purpose --- base/.profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/.profile b/base/.profile index 7df30cb9..0e00d7e4 100755 --- a/base/.profile +++ b/base/.profile @@ -152,6 +152,7 @@ if has git; then alias gcsam="git commit -S -am" alias gct='git checkout --track' alias gd='git diff' + alias gdt="git diff --staged -- ':!*test*'" alias gdel='git branch -D' alias gds='git diff --staged' alias gdv='git diff -w "$@" | vim -R -' @@ -360,4 +361,3 @@ localprofile="$HOME/.local/profile" if [ -f "$localprofile" ]; then . "$localprofile" fi -