summaryrefslogtreecommitdiffstats
path: root/.profile
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2024-02-09 18:34:02 +0000
committerTyler Davis <tyler@gluecode.net>2024-02-09 18:34:02 +0000
commit0f04484527a44be3687b2ee30442f3f7e0c4ad5c (patch)
treeadfd569b250723007561d383bedf42442774c118 /.profile
parentb7b4864fe2cad1b71fe99c9c5dec915a77129640 (diff)
downloaddotfiles-0f04484527a44be3687b2ee30442f3f7e0c4ad5c.tar.gz
dotfiles-0f04484527a44be3687b2ee30442f3f7e0c4ad5c.zip
sh: add gc_all alias
Diffstat (limited to '.profile')
-rw-r--r--.profile3
1 files changed, 3 insertions, 0 deletions
diff --git a/.profile b/.profile
index bd282a5..0a72df9 100644
--- a/.profile
+++ b/.profile
@@ -135,10 +135,13 @@ elif [ "$(command -v podman)" ]; then
export DOCKER_HOST="unix:$XDG_RUNTIME_DIR/podman/podman.sock"
fi
+
# Presrving these for future use
#alias psc='ps xawf -eo pid,user,cgroup,args'
#alias gdb='gdb -tui'
+alias gc_all="find ~/.code -name \".git$\" | xargs -I {} -n 1 bash -c \"cd {}; echo {}; git gc --aggressive;\" "
+
#if [ "$TERM" = "tmux-256color" ]; then export TERM=xterm-256color; fi
# == END TOOLS ==