diff --git a/.gitconfig b/.gitconfig deleted file mode 100755 index 709fba9..0000000 --- a/.gitconfig +++ /dev/null @@ -1,3 +0,0 @@ -[user] - name = LordMathis - email = namesny.matus@gmail.com diff --git a/bin/setup.sh b/bin/setup.sh index 0bc8d18..abfb9c6 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -3,3 +3,11 @@ echo "Enter OpenWeatherMap API key" read line echo $line | secret-tool store --label='OpenWeatherMap API Key' openweathermap api_key + +echo "Enter git name" +read name +git config --global user.name $name + +echo "Enter git email" +read email +git config --global user.email $email