From 8762d6ab087ea87a158fddc64b329d81a1ccd622 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Thu, 5 May 2022 14:47:13 +0300 Subject: [PATCH] gitconfig: disable advice on detachedHead state --- .mikaela/gitconfig | 4 ++++ conf/gitconfig | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.mikaela/gitconfig b/.mikaela/gitconfig index 35625430..12baf7fe 100644 --- a/.mikaela/gitconfig +++ b/.mikaela/gitconfig @@ -59,3 +59,7 @@ defaultBranch = cxefa [gpg "ssh"] allowedSignersFile = ~/src/gitea.blesmrt.net/Mikaela/ssh-allowed_signers/allowed_signers +[advice] + # I am not developing in detached head state, I generally want to compile + # a specific version of a program and I know how to get out of it + detachedHead = false \ No newline at end of file diff --git a/conf/gitconfig b/conf/gitconfig index 2e6f2316..cbfbbedb 100644 --- a/conf/gitconfig +++ b/conf/gitconfig @@ -59,3 +59,7 @@ defaultBranch = cxefa [gpg "ssh"] allowedSignersFile = ~/src/gitea.blesmrt.net/Mikaela/ssh-allowed_signers/allowed_signers +[advice] + # I am not developing in detached head state, I generally want to compile + # a specific version of a program and I know how to get out of it + detachedHead = false \ No newline at end of file