1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | [user]
email =
name =
[alias]
co = checkout
ci = commit
br = branch
dfs = diff --staged
logg = log --graph --decorate --oneline --abbrev-commit --all
branches = branch -a
[core]
editor = vim
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[init]
defaultBranch = main
|
x
Notes
I know its git config --global -e
if your wondering the command to edit your git config or vim ~/.gitconfig
. I find my self always using the git logg
function so see where the project has been and going. May not be practical on a large project but most, it works pretty well. and the git branches
is just convenient. Thought I would share it. The other stuff is just config for doing day to day tasks.