From c7823fae3f6c6c8a7201dc809ac361428e7ca9f4 Mon Sep 17 00:00:00 2001 From: Asmatzaile Date: Tue, 29 Oct 2024 00:06:49 +0100 Subject: [PATCH] Setting Up Git: Remove redundant default setting instruction (#28975) color.ui auto is already the default --- foundations/installations/setting_up_git.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/foundations/installations/setting_up_git.md b/foundations/installations/setting_up_git.md index 27521aeeae1..db467c2d785 100644 --- a/foundations/installations/setting_up_git.md +++ b/foundations/installations/setting_up_git.md @@ -151,12 +151,6 @@ GitHub recently changed the default branch on new repositories from `master` to git config --global init.defaultBranch main ``` -To enable colorful output with `git`, type - -```bash -git config --global color.ui auto -``` - You'll also likely want to set your default branch reconciliation behavior to merging. You'll learn what all those terms mean later in the curriculum, but for now just know that we suggest running the below command as part of the Git setup process when doing The Odin Project. ```bash