Настройка GIT локальный пользователь
git config user.name "Your Name Here"
git config user.email your@email.com
Or Global
git config --global user.name "Your Name Here"
git config --global user.email your@email.com
Viruscom1000