summaryrefslogtreecommitdiff
path: root/bin/git-lol
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2023-12-13 21:39:47 -0500
committerOwen Jacobson <owen@grimoire.ca>2023-12-13 22:10:56 -0500
commitb7e2019eeed38d3b22f07c51aac8578fd53c9bee (patch)
tree157b6e31f4d053995f113890faa9bed003fdf156 /bin/git-lol
parent4f32cdbb3681488b9f9215e253a5754800ebaab8 (diff)
Move aliases to scripts.
The git aliases mechanism is pretty limited; there's some stuff you can't really do without dropping to a shell. If you're going to do that, then custom subcommand scripts are more flexable than aliases that start with ! are.
Diffstat (limited to 'bin/git-lol')
-rwxr-xr-xbin/git-lol4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/git-lol b/bin/git-lol
new file mode 100755
index 0000000..1476889
--- /dev/null
+++ b/bin/git-lol
@@ -0,0 +1,4 @@
+#!/bin/bash -e
+
+# Simple text-based commit graph: `git lol [BRANCHES|--all]`
+exec git log --graph --oneline --decorate "$@"