Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

ERROR - nao consigo configurar o-email, ja mudei o e-mail no github para publicoe mesmo assim nao vai.

PS C:\Users\Gleibson\Desktop\3386-git-github-projeto_inicial> git init Reinitialized existing Git repository in C:/Users/Gleibson/Desktop/3386-git-github-projeto_inicial/.git/ PS C:\Users\Gleibson\Desktop\3386-git-github-projeto_inicial> git add . PS C:\Users\Gleibson\Desktop\3386-git-github-projeto_inicial> git commit -m "Aula Git - projeto"

*** Please tell me who you are.

Run

git config --global user.email "you@example.com" git config --global user.name "Your Name"

to set your account's default identity. Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'Gleibson@Gleibson.(none)') PS C:\Users\Gleibson\Desktop\3386-git-github-projeto_inicial> git -config --global user.email "gleibson.2018@outlook.com.br"

git config --global user.name "GleibsonK" unknown option: -config usage: git [-v | --version] [-h | --help] [-C ] [-c =] [--exec-path[=]] [--html-path] [--man-path] [--info-path] [-p | --paginate | -P | --no-pager] [--no-replace-objects] [--bare] [--git-dir=] [--work-tree=] [--namespace=] [--config-env==] [] PS C:\Users\Gleibson\Desktop\3386-git-github-projeto_inicial> git commit -m "Aula Git - projeto" Author identity unknown

*** Please tell me who you are.

Run

git config --global user.email "you@example.com" git config --global user.name "Your Name"

to set your account's default identity. Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'Gleibson@Gleibson.(none)') PS C:\Users\Gleibson\Desktop\3386-git-github-projeto_inicial>

2 respostas
solução!

Olá, Gleibson! Tudo bem?

Devemos fornecer ao git alguns dados sobre o nosso usuário, para que ele possa identificar quem está realizando as ações, nesse caso devemos informar o nosso e-mail e o nosso nome de usuário no Git.

De acordo com o comando git -config --global user.email "gleibson.2018@outlook.com.br", podemos notar a presença de um pequeno traço (-) antes do comando 'config', quando o correto seria usar apenas um espaço, como no exemplo abaixo:

git config --global user.email "gleibson.2018@outlook.com.br"
git config --global user.name "GleibsonK"

Espero ter ajudado! Caso tenha ficado alguma dúvida, sinta-se à vontade em comunicar, estou à disposição!

Um forte abraço e bons estudos!

Caso este post tenha te ajudado, por favor, marcar como solucionado ✓

Obrigado Sarah.