From 3aacf3a985be7a78a752232ed2d2d91986d33e6b Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Tue, 16 Apr 2024 19:30:51 -0400 Subject: [PATCH] Add git user configuration step --- opensuse-setup.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opensuse-setup.sh b/opensuse-setup.sh index 6e24a25..2f55b88 100755 --- a/opensuse-setup.sh +++ b/opensuse-setup.sh @@ -564,6 +564,10 @@ if [ ! -d ${PROJECTS_DIR} ]; then gio set ${PROJECTS_DIR} metadata::custom-icon-name folder-code fi +# Configure git +git config --global user.name "Jessie Hildebrandt" +git config --global user.email "jessieh@jessieh.net" + # Perform a blobless clone of all public repos at git.tty.dog API_URL="https://git.tty.dog/api/v1/repos/search" for CLONE_URL in $(curl -s "${API_URL}?uid=1" | jq -r ".data.[].ssh_url"); do