-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add quotepath arg to git config file to display chinese
- Loading branch information
1 parent
14f0ab9
commit 082be3d
Showing
1 changed file
with
26 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,52 @@ | ||
[includeIf "gitdir:~/Fuckcode/"] | ||
path = ~/.git/github | ||
path = ~/.git/github | ||
|
||
[includeIf "gitdir:~/working/"] | ||
path = ~/.git/working | ||
path = ~/.git/working | ||
|
||
[credential] | ||
helper = store | ||
helper = store | ||
|
||
[filter "lfs"] | ||
process = git-lfs filter-process | ||
required = true | ||
clean = git-lfs clean -- %f | ||
smudge = git-lfs smudge -- %f | ||
process = git-lfs filter-process | ||
required = true | ||
clean = git-lfs clean -- %f | ||
smudge = git-lfs smudge -- %f | ||
|
||
[pull] | ||
rebase = true | ||
rebase = true | ||
|
||
[push] | ||
followTags = true | ||
followTags = true | ||
|
||
[diff] | ||
submodule = log | ||
submodule = log | ||
|
||
[submodule] | ||
recurse = true | ||
recurse = true | ||
|
||
[http] | ||
proxy = http://127.0.0.1:10887 | ||
proxy = http://127.0.0.1:10887 | ||
|
||
[color] | ||
ui = true | ||
ui = true | ||
|
||
[color "diff-highlight"] | ||
oldNormal = red bold | ||
oldHighlight = red bold 52 | ||
newNormal = green bold | ||
newHighlight = green bold 22 | ||
oldNormal = red bold | ||
oldHighlight = red bold 52 | ||
newNormal = green bold | ||
newHighlight = green bold 22 | ||
|
||
[color "diff"] | ||
meta = 11 | ||
frag = magenta bold | ||
commit = yellow bold | ||
old = red bold | ||
new = green bold | ||
whitespace = red reverse | ||
meta = 11 | ||
frag = magenta bold | ||
commit = yellow bold | ||
old = red bold | ||
new = green bold | ||
whitespace = red reverse | ||
|
||
[diff-so-fancy] | ||
markEmptyLines = true | ||
markEmptyLines = true | ||
|
||
[core] | ||
quotepath = false |