chore: updated gitconfig
d1e3029e
3 file(s) · +9 −1
| 6 | 6 | [alias] |
|
| 7 | 7 | ac = "!f() { git add . && git commit -m \"$1\"; }; f" |
|
| 8 | 8 | wip = "!f() { git add . && git commit -m \"wip\" && git push; }; f" |
|
| 9 | + | d = difftool -y --tool=oy |
|
| 10 | + | ||
| 11 | + | [difftool "oy"] |
|
| 12 | + | cmd = oy "$LOCAL" "$REMOTE" |
|
| 13 | + | ||
| 14 | + | [difftool] |
|
| 15 | + | prompt = false |
|
| 9 | 16 | ||
| 10 | 17 | [column] |
|
| 11 | 18 | ui = auto |
|
| 12 | 19 | ||
| 13 | 20 | [branch] |
|
| 14 | - | sort = -comitterdate |
|
| 21 | + | sort = -committerdate |
|
| 15 | 22 | ||
| 16 | 23 | [init] |
|
| 17 | 24 | defaultBranch = main |
|
| 18 | 25 | ||
| 19 | 26 | [diff] |
|
| 27 | + | tool = oy |
|
| 20 | 28 | algorithm = histogram |
|
| 21 | 29 | colorMoved = plain |
|
| 22 | 30 | mnemonicPrefix = true |