diff options
author | Leah Rowe <leah@libreboot.org> | 2022-11-15 10:21:57 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2022-11-15 10:21:57 +0000 |
commit | 3f12ef8530ad1556914dea62bc2724df26d91e59 (patch) | |
tree | a8ae8e05e762e42e0958315790f3bf9940ddf965 | |
parent | cf945dda0c69e59e2ad8aa92021e8cda0f088583 (diff) |
bonerfix
-rwxr-xr-x | .gitcheck | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -3,16 +3,16 @@ # SPDX-License-Identifier: GPL-3.0-only Set_placeholder(){ - git config user.name || git config user.name 'osbmkplaceholder' - git config user.email || git config user.email 'placeholder@osbmkplaceholder.com' + git config user.name || git config user.name 'lbmkplaceholder' + git config user.email || git config user.email 'placeholder@lbmkplaceholder.com' } Clean(){ - if [ "$(git config user.name)" = "osbmkplaceholder" ]; then + if [ "$(git config user.name)" = "lbmkplaceholder" ]; then git config --unset user.name fi - if [ "$(git config user.email)" = "placeholder@osbmkplaceholder.com" ]; then + if [ "$(git config user.email)" = "placeholder@lbmkplaceholder.com" ]; then git config --unset user.email fi } |