aboutsummaryrefslogtreecommitdiff
path: root/dotfiles
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-11 14:34:55 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-11 14:34:55 +0100
commit481378543fb0601062726b54d141b0687d579eaa (patch)
treeae719d6324a30772687423b44b15898ecf1fc6fc /dotfiles
parentc4ae90f9ef03972428392aa67f07319ce4d87db7 (diff)
downloadmonorepo-481378543fb0601062726b54d141b0687d579eaa.tar
monorepo-481378543fb0601062726b54d141b0687d579eaa.tar.gz
monorepo-481378543fb0601062726b54d141b0687d579eaa.tar.bz2
monorepo-481378543fb0601062726b54d141b0687d579eaa.tar.xz
monorepo-481378543fb0601062726b54d141b0687d579eaa.zip
add git configuration file
Diffstat (limited to 'dotfiles')
-rw-r--r--dotfiles/.gitconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/dotfiles/.gitconfig b/dotfiles/.gitconfig
new file mode 100644
index 0000000..561d3df
--- /dev/null
+++ b/dotfiles/.gitconfig
@@ -0,0 +1,9 @@
+[user]
+ email = zuedev@gmail.com
+ name = Alex Pooley (@zuedev)
+
+[alias]
+ sync = !git add -A && git commit && git push
+ nuke = !git clean -df && git reset --hard
+ zdinit = !ssh git@git -C "git init --bare $1" && git clone git@git:$1
+ undo = reset --soft HEAD^ \ No newline at end of file