summaryrefslogtreecommitdiff
path: root/.gitcheck
blob: 7b77c1bce2c864f5cb6e42399a8cfaa40dc6cfb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
# 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'
}

Clean(){
	if [ "$(git config user.name)" = "osbmkplaceholder" ]; then
		git config --unset user.name
	fi

	if [ "$(git config user.email)" = "placeholder@osbmkplaceholder.com" ]; then
		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