Fix: gitconfig
This commit is contained in:
parent
4775a9dd7a
commit
313be4ea23
1 changed files with 43 additions and 3 deletions
46
gitconfig
46
gitconfig
|
@ -1,5 +1,45 @@
|
|||
# Das ist Git's benutzerspezifische Konfiguraionsdatei.
|
||||
[user]
|
||||
# Bitte passen Sie die folgenden Zeilen an und kommentieren Sie diese aus:
|
||||
name = nold
|
||||
email = nold@gnu.one
|
||||
name = nold
|
||||
|
||||
[status]
|
||||
showUntrackedFiles = all
|
||||
|
||||
[alias]
|
||||
f = fetch -v
|
||||
l = log --all --graph --decorate=full --pretty=fuller --date-order --full-history
|
||||
r = rebase origin/master master
|
||||
c = commit -m
|
||||
s = status
|
||||
logv = log --graph --decorate=full --date-order --full-history --date=local master HEAD
|
||||
logvr = log --graph --decorate=full --date-order --full-history --date=local master HEAD origin/master
|
||||
logva = log --graph --decorate=full --date-order --full-history --date=local --all
|
||||
logpf = log --patch --follow
|
||||
dt = difftool
|
||||
mt = mergetool
|
||||
|
||||
[push]
|
||||
default = simple
|
||||
|
||||
[core]
|
||||
autocrlf = input
|
||||
|
||||
[color]
|
||||
ui = auto
|
||||
|
||||
#[color "diff"]
|
||||
# whitespace = red reverse
|
||||
[pull]
|
||||
rebase = true
|
||||
[clean]
|
||||
requireForce = true
|
||||
[merge]
|
||||
tool = vimdiff3
|
||||
conflictstyle = diff3
|
||||
ff = only
|
||||
#[diff]
|
||||
# tool = vimdiff
|
||||
[mergetool]
|
||||
prompt = false
|
||||
[difftool]
|
||||
prompt = false
|
||||
|
|
Loading…
Reference in a new issue