about summary refs log tree commit diff stats
path: root/subx/gg
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-30 20:30:12 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-30 20:30:12 -0700
commit219d05fa00046da7333c1199e838fea34edb9ef3 (patch)
treec348dcc95f01cc851a698208cdfaea973f5a5b61 /subx/gg
parent86d8f1f30dd70f9be457d9855327649a0870a22e (diff)
downloadmu-219d05fa00046da7333c1199e838fea34edb9ef3.tar.gz
4463
Also purge some unused helper scripts. Good ideas in theory, but no
point if they didn't make it to muscle memory.
Diffstat (limited to 'subx/gg')
-rwxr-xr-xsubx/gg13
1 files changed, 0 insertions, 13 deletions
diff --git a/subx/gg b/subx/gg
deleted file mode 100755
index cafc7864..00000000
--- a/subx/gg
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env zsh
-# Run git commands on a specific example's generated binary.
-
-if [ $# -eq 0 ]
-then
-  echo "g <git command> <args> <target>"
-  exit 1
-fi
-
-arg=( $* )
-target=$arg[${#arg[@]}]
-unset "arg[${#arg[@]}]"
-git ${arg[@]} ./$target