1
resposta

[Dúvida] ta dando esse bug como resolvo ?

PS C:\Users\carlo\Desktop\sistema-de-cadastro> git status
On branch main
Your branch is up to date with 'origin/main'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   index.html

no changes added to commit (use "git add" and/or "git commit -a")
PS C:\Users\carlo\Desktop\sistema-de-cadastro> git commit index.html -m "linkando o app js com o html"
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 'carlo@DESKTOP-TKFKVUA.(none)')
PS C:\Users\carlo\Desktop\sistema-de-cadastro>
1 resposta

Oii, Carlos! Tudo bem por aí?

O erro está nos dizendo que o Git não reconhece quem você é. Ou seja: é necessário se identificar.

Para fazer isso, abra o terminal e digite os seguintes comandos:

git config --global user.email "seuEmail@email.com"
git config --global user.name "Seu Nome Aqui"

Após configurar a sua identidade, tente inserir o comando a seguir para rastrear seus arquivos:

git add .

E, para commitar, basta utilizar o comando abaixo:

git commit -m "Mensagem aqui dentro das aspas"

Espero ter ajudado. Se a dúvida persistir, estou disponível.

Abraços e bons estudos!

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