3
respostas

não consigo comitar

$ git push -u origin main error: src refspec main does not match any error: failed to push some refs to 'https://github.com/Carlosant2020/organo-.git' $ git commit -m "primeiro commit" 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 'User@DESKTOP-F7RLD7H.(none)')

3 respostas

Insira aqui a descrição dessa imagem para ajudar na acessibilidade !

Olá Carlos, tudo bem? Pelo que entendi, você está com dificuldades para realizar o commit em seu repositório no GitHub. O erro que apareceu indica que o Git não conseguiu encontrar a referência "main".

Para resolver esse problema, você pode tentar executar o seguinte comando antes de realizar o push:

git branch -M main

Esse comando irá renomear a branch atual para "main". Depois disso, tente realizar o commit novamente com o comando:

git commit -m "primeiro commit"

Caso ainda ocorram erros relacionados à identidade do autor do commit, como no caso da mensagem "Author identity unknown", você pode seguir as instruções indicadas pelo Git para configurar o email e nome do autor. Basta executar os comandos:

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

Lembre-se de substituir "you@example.com" pelo seu email e "Your Name" pelo seu nome.

Espero ter ajudado e bons estudos!

fis o commit e deu outro erro depois de fazer o push PS C:\Users\User\Documents\organo> git push -u origin main To https://github.com/Carlosant2020/organo-.git ! [rejected] main -> main (fetch first) error: failed to push some refs to 'https://github.com/Carlosant2020/organo-.git' hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.**