dotfiles/config/git/.gitconfig
2023-11-25 04:29:59 -05:00

49 lines
903 B
INI

# Have git remember credentials
# git config --global credential.helper (store|cache|libsecret|git-credential-manager-core)
# Setting up a new repo *make first commit*
# git remote add origin <url/path to git project>
# git push -u origin master
[user]
email = notjamesdixon@gmail.com
name = James Dixon
[credential]
username = lemonase
helper = store
[color]
ui = true
status = auto
branch = auto
[diff]
tool = vimdiff
[difftool]
prompt = false
[pull]
ff = only
[alias]
s = status
st = status
a = add
aa = add --all
ai = add -i
c = commit
ca = commit -a
cm = commit -m
cam = commit -am
co = checkout
br = branch
d = diff
df = diff
dt = difftool
lg = log
plog = log --all --decorate --oneline --graph
graph = log --all --decorate --oneline --graph
pl = pull
pul = pull
ps = push
puhs = push
sm = submodule
[credential "https://dev.azure.com"]
useHttpPath = true