add: make: git

This commit is contained in:
TheK4n 2021-11-30 19:53:03 +03:00
parent 16d61df3a3
commit 0713141571
2 changed files with 7 additions and 10 deletions

View File

@ -12,3 +12,10 @@ clean:
ssh: ssh:
cat .ssh/config >> ~/.ssh/config 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

View File

@ -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"