mirror of
https://source.perfectable.org/nivertius/git-rc.git
synced 2025-07-02 02:56:10 +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
|
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
|
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 --
|
unstage = reset -q HEAD --
|
||||||
|
|
||||||
discard = checkout --
|
discard = checkout --
|
||||||
uncommit = reset --mixed HEAD~
|
uncommit = reset --mixed HEAD~
|
||||||
amend = commit --amend
|
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