pull down to refresh

We share our git aliases awhile ago. I hadn't messed with the rest of the config much. Going to give this a shot:
# clearly makes git better

[column]
        ui = auto
[branch]
        sort = -committerdate
[tag]
        sort = version:refname
[init]
        defaultBranch = main
[diff]
        algorithm = histogram
        colorMoved = plain
        mnemonicPrefix = true
        renames = true
[push]
        default = simple
        autoSetupRemote = true
        followTags = true
[fetch]
        prune = true
        pruneTags = true
        all = true

# why the hell not?

[help]
        autocorrect = prompt
[commit]
        verbose = true
[rerere]
        enabled = true
        autoupdate = true
[core]
        excludesfile = ~/.gitignore
[rebase]
        autoSquash = true
        autoStash = true
        updateRefs = true

# a matter of taste (uncomment if you dare)

[core]
        # fsmonitor = true
        # untrackedCache = true
[merge]
        # (just 'diff3' if git version < 2.3)
        # conflictstyle = zdiff3 
[pull]
        # rebase = true
150 sats \ 1 reply \ @kepford 25 Feb
Been going through this and they are great. Most I didn't already have in my config. Wasn't expecting that
reply
Yea I need to go through them, too. Some are pretty obvious what they do and would be nice to set, others I need to read more about.
reply
reply
Now I need to read the readme :)
reply