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