You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-9Lines changed: 24 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -31,15 +31,6 @@ $ git-commander
31
31
-**blessed** >= 0.1.7
32
32
-**lodash** >= 3.0
33
33
34
-
# Tips
35
-
36
-
If you use non-ascii character for source files, You need to disable
37
-
the **core.quotepath** option using following command:
38
-
39
-
```bash
40
-
$ git config --global core.quotepath false
41
-
```
42
-
43
34
# Key Configuration
44
35
45
36
We have two key sets _vi_ and _mc_ preconfigured. The default one is _vi_.
@@ -73,6 +64,30 @@ You also can redefine keys one by one if you would like. You'll need to extend y
73
64
74
65
You can find [default settings here](https://github.com/golbin/git-commander/tree/master/config/key).
75
66
67
+
# Troubleshootings
68
+
69
+
## ANSI color codes are displayed
70
+
71
+
ANSI color codes are being displayed if you set "always" for color settings in your **.gitconfig**. For fixing this, set "auto" for color settings like below.
72
+
73
+
```
74
+
[color]
75
+
# diff = always
76
+
diff = auto
77
+
status = auto
78
+
ui = auto
79
+
branch = auto
80
+
```
81
+
82
+
## Non-ascii character problem
83
+
84
+
If you use non-ascii character for source files, You need to disable
85
+
the **core.quotepath** option using following command:
0 commit comments