moving all dots
This commit is contained in:
parent
6fcf9ba919
commit
d9b6fdfc1b
349 changed files with 34598 additions and 34727 deletions
60
dot_gitconfig
Normal file
60
dot_gitconfig
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
[user]
|
||||
name = Barak Michener
|
||||
email = me@barakmich.com
|
||||
|
||||
[alias]
|
||||
br = branch -a -v
|
||||
st = status -uno
|
||||
stat = status -uno
|
||||
ci = commit
|
||||
co = checkout
|
||||
w = whatchanged
|
||||
revert = checkout -f
|
||||
stagediff = diff --staged
|
||||
sdiff = diff --staged
|
||||
graph = log --graph --oneline
|
||||
submodule-pull = submodule foreach git pull
|
||||
ours = "!f() { git checkout --ours $@ && git add $@; }; f"
|
||||
theirs = "!f() { git checkout --theirs $@ && git add $@; }; f"
|
||||
praise = blame
|
||||
hist = show-branch -a
|
||||
undo-last = reset HEAD^
|
||||
unstage = restore --staged
|
||||
latest = branch --sort=committerdate
|
||||
f = fetch origin main
|
||||
|
||||
[diff]
|
||||
renamelimit = 0
|
||||
|
||||
[merge]
|
||||
conflictstyle = diff3
|
||||
|
||||
[color]
|
||||
diff = auto
|
||||
interactive = auto
|
||||
status = auto
|
||||
branch = auto
|
||||
|
||||
[core]
|
||||
autocrlf = input
|
||||
;[push]
|
||||
;default = simple
|
||||
[push]
|
||||
default = current
|
||||
[rerere]
|
||||
enabled = true
|
||||
|
||||
[url "git@github.com:"]
|
||||
insteadOf = https://github.com
|
||||
|
||||
[url "git@git.barakmich.com:"]
|
||||
insteadOf = https://git.barakmich.com
|
||||
[pull]
|
||||
ff = only
|
||||
[init]
|
||||
defaultBranch = main
|
||||
[filter "lfs"]
|
||||
clean = git-lfs clean -- %f
|
||||
smudge = git-lfs smudge -- %f
|
||||
process = git-lfs filter-process
|
||||
required = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue