2022-03-15 18:02:04 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
|
|
|
Set_placeholder(){
|
2022-11-15 10:21:57 +00:00
|
|
|
git config user.name || git config user.name 'lbmkplaceholder'
|
|
|
|
git config user.email || git config user.email 'placeholder@lbmkplaceholder.com'
|
2022-03-15 18:02:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Clean(){
|
2022-11-15 10:21:57 +00:00
|
|
|
if [ "$(git config user.name)" = "lbmkplaceholder" ]; then
|
2022-03-15 18:02:04 +00:00
|
|
|
git config --unset user.name
|
|
|
|
fi
|
|
|
|
|
2022-11-15 10:21:57 +00:00
|
|
|
if [ "$(git config user.email)" = "placeholder@lbmkplaceholder.com" ]; then
|
2022-03-15 18:02:04 +00:00
|
|
|
git config --unset user.email
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
Run(){
|
|
|
|
if [ "${1}" = "clean" ]; then
|
|
|
|
Clean
|
|
|
|
else
|
|
|
|
# Check if username and or email is set.
|
|
|
|
if ! git config user.name || git config user.email ; then
|
|
|
|
Set_placeholder
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
Run >/dev/null
|