summaryrefslogtreecommitdiff
path: root/.gitconfig
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-09-15 18:56:37 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-09-15 19:02:45 -0700
commit999d85a5d3beebf6be8c3ef84229025e34f8fc03 (patch)
tree43c5743bc3343c58bf70287c475789e15ff9fe26 /.gitconfig
parente94959de096d4a52afd50ad5466bff68a4ac283c (diff)
downloaddotfiles-999d85a5d3beebf6be8c3ef84229025e34f8fc03.tar.gz
add 's' git alias
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig
index 33416a09..e35adabb 100644
--- a/.gitconfig
+++ b/.gitconfig
@@ -17,6 +17,7 @@
# --simplify-by-decoration
v = log --graph --full-history -n 30 --decorate --oneline --branches --all
ov = log --graph --full-history -n 30 --decorate --oneline --branches --all --simplify-by-decoration
+ s = status
co = checkout
sco = "!f() { git stash && git checkout \"$@\"; git stash pop; }; f"