# base - .gitconfig - beg
[branch "alpha"]
    merge = refs/heads/alpha
    remote = origin
[branch "base"]
    merge = refs/heads/base
    remote = origin
[core]
    # autocrlf = false
    autocrlf = input
    bare = false
    # filemode = false
    logallrefupdates = true
    repositoryformatversion = 0
[diff]
    algorithm = histogram
[pull]
    ff = only
[receive]
    denyCurrentBranch = warn
# base - .gitconfig - end
[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = https://github.com/user/sqlmath
[remote "upstream"]
    fetch = +refs/heads/*:refs/remotes/upstream/*
    url = https://github.com/sqlmath/sqlmath
