mirror of
https://source.perfectable.org/nivertius/git-rc.git
synced 2025-07-01 20:44:14 +02:00
Add more conveniance options
This commit is contained in:
parent
0d7b1c3c9a
commit
4323b792df
1 changed files with 18 additions and 0 deletions
18
.gitconfig
18
.gitconfig
|
@ -28,7 +28,25 @@
|
|||
diffdir = difftool --dir-diff
|
||||
graph = log --graph --abbrev-commit --decorate --date=relative --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
|
||||
|
||||
stage = add
|
||||
unstage = reset -q HEAD --
|
||||
|
||||
discard = checkout --
|
||||
uncommit = reset --mixed HEAD~
|
||||
amend = commit --amend
|
||||
[diff]
|
||||
compactionHeuristic = true
|
||||
indentHeuristic = true
|
||||
algorithm = histogram
|
||||
[difftool]
|
||||
prompt = false
|
||||
[gc]
|
||||
autoDetach = false
|
||||
[interactive]
|
||||
diffFilter = diff-highlight
|
||||
[stash]
|
||||
showPatch = true
|
||||
[rebase]
|
||||
autostash = true
|
||||
[commit]
|
||||
verbose = true
|
||||
|
|
Loading…
Add table
Reference in a new issue