diff --git a/Makefile b/Makefile index a2068e2..3fdc07a 100644 --- a/Makefile +++ b/Makefile @@ -12,3 +12,10 @@ clean: ssh: cat .ssh/config >> ~/.ssh/config + +git: + git config --global user.email "djvlad967891@gmail.com" + git config --global user.name "TheK4n" + git config --global core.editor vim + git config --global init.defaultBranch main + git config --global core.autocrlf true diff --git a/git_setup.sh b/git_setup.sh deleted file mode 100644 index abe81ad..0000000 --- a/git_setup.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -echo "Type in your first and last name (no accent or special characters - e.g. 'รง'): " -read -r full_name - -echo "Type in your email address (the one used for your GitHub account): " -read -r email - -git config --global user.email "$email" -git config --global user.name "$full_name"