change credential helper and change spaces to tabs

This commit is contained in:
James Dixon 2022-05-09 19:10:35 -04:00
parent 6e90b09d88
commit c6142f5eff

View File

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