From 5a2009e9b59555c5fdf1f93aeace22bb2d5abb7f Mon Sep 17 00:00:00 2001 From: Missy Davies <mdavies@gitlab.com> Date: Tue, 13 Feb 2024 13:09:06 +0000 Subject: [PATCH] Switch name and email config --- support/gdk-in-a-box/setup-git | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/support/gdk-in-a-box/setup-git b/support/gdk-in-a-box/setup-git index 2af9d1169b6e..5a1fbf72823e 100644 --- a/support/gdk-in-a-box/setup-git +++ b/support/gdk-in-a-box/setup-git @@ -9,7 +9,7 @@ read -r name </dev/tty echo "What is your e-mail address?" read -r email </dev/tty git remote set-url --push origin git@gitlab.com:gitlab-community/gitlab.git -git config --global user.email "$name" -git config --global user.name "$email" +git config --global user.email "$email" +git config --global user.name "$name" echo "Please add this key to your profile https://gitlab.com/-/profile/keys" cat ~/.ssh/id_ed25519.pub \ No newline at end of file -- GitLab