From 070f375a0547c5fdeab9a510634487cbd5b0d927 Mon Sep 17 00:00:00 2001 From: InoriShio Date: Sat, 7 Sep 2024 16:01:06 +0200 Subject: [PATCH] what the fuk do you mean empty commit --- Git.sh => Scripts/Git.sh | 0 Scripts/git-account.sh | 7 +++++++ 2 files changed, 7 insertions(+) rename Git.sh => Scripts/Git.sh (100%) create mode 100644 Scripts/git-account.sh diff --git a/Git.sh b/Scripts/Git.sh similarity index 100% rename from Git.sh rename to Scripts/Git.sh diff --git a/Scripts/git-account.sh b/Scripts/git-account.sh new file mode 100644 index 0000000..37ef9da --- /dev/null +++ b/Scripts/git-account.sh @@ -0,0 +1,7 @@ +# Add username + email to git +echo "Enter your username" +read username +echo "Enter your emailadres" +read email +git config user.name "$username" +git config user.email "$email" \ No newline at end of file