diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-05-11 14:34:55 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-05-11 14:34:55 +0100 |
| commit | 481378543fb0601062726b54d141b0687d579eaa (patch) | |
| tree | ae719d6324a30772687423b44b15898ecf1fc6fc | |
| parent | c4ae90f9ef03972428392aa67f07319ce4d87db7 (diff) | |
| download | monorepo-481378543fb0601062726b54d141b0687d579eaa.tar monorepo-481378543fb0601062726b54d141b0687d579eaa.tar.gz monorepo-481378543fb0601062726b54d141b0687d579eaa.tar.bz2 monorepo-481378543fb0601062726b54d141b0687d579eaa.tar.xz monorepo-481378543fb0601062726b54d141b0687d579eaa.zip | |
add git configuration file
| -rw-r--r-- | dotfiles/.gitconfig | 9 |
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 |
