diff --git a/README.md b/README.md index 24bf42f..bef5dc3 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,8 @@ P.S: All these commands are tested on `git version 2.7.4 (Apple Git-66)`. * [Clone a single branch](#clone-a-single-branch) * [Create and switch new branch](#create-and-switch-new-branch) * [Ignore file mode changes on commits](#ignore-file-mode-changes-on-commits) +* [Turn off git colored terminal output](#turn-off-git-colored-terminal-output) +* [specific color settings](#specific-color-settings) @@ -751,5 +753,15 @@ git checkout -b git config core.fileMode false ``` +## Turn off git colored terminal output +```sh +git config --global color.ui false +``` + +## specific color settings +```sh +git config --global +``` + diff --git a/tips.json b/tips.json index b17022d..9048deb 100644 --- a/tips.json +++ b/tips.json @@ -333,4 +333,10 @@ },{ "title": "Ignore file mode changes on commits", "tip": "git config core.fileMode false" +},{ + "title": "Turn off git colored terminal output", + "tip": "git config --global color.ui false" +},{ + "title": "specific color settings", + "tip": "git config --global " }]