From 6a3ed160357c583e208609c0ce7c000e5af81ad9 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 25 Feb 2025 22:22:48 +0000 Subject: [PATCH] Update git config https://blog.gitbutler.com/how-git-core-devs-configure-git/ --- git/.gitconfig | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/git/.gitconfig b/git/.gitconfig index de3c6ea..d232b95 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -20,7 +20,37 @@ [pull] ff = only + rebase = true +[column] + ui = auto + +[branch] + sort = -committerdate + +[tag] + sort = version:refname + +[diff] + algorithm = histogram + colorMoved = plain + mnemonicPrefix = true + renames = true + +[push] + autoSetupRemote = true + followTags = true + default = simple + +[fetch] + prune = true + pruneTags = true + all = true + +[rebase] + autoSquash = true + autoStash = true + updateRefs = true [url "ssh://git@github.com/2315-Media"] insteadOf = "https://github.com/2315-Media"