3
respostas

[Dúvida] Consegue me ajudar? a chave já foi gerada e cadastrada no git

PS C:\Users\johng\Downloads\logica-js-projeto_inicial\logica-js-projeto_inicial>  git push -u origin main
ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
3 respostas

Oi Jhonatan,

Pelo erro que você compartilhou, parece que o Git não está conseguindo encontrar o repositório remoto no GitHub.

Isso geralmente acontece por alguns motivos:

  1. URL do repositório incorreta: Verifique se a URL do repositório remoto (origin) está correta. Você pode verificar com o comando git remote -v. Se estiver errada, use git remote set-url origin <URL_CORRETA> para corrigi-la.
  2. Repositório não existe: Certifique-se de que você criou o repositório no GitHub e que o nome está exatamente igual ao que você está usando no comando git push.
  3. Problema de permissão: Embora você tenha gerado e cadastrado a chave SSH, pode haver algum problema de permissão. Verifique se a chave está corretamente adicionada ao seu perfil no GitHub. 🤔

Exemplo:

# Para verificar a URL remota
git remote -v

# Se a URL estiver errada, use:
git remote set-url origin git@github.com:seu_usuario/seu_repositorio.git

Para saber mais: Gerando uma nova chave SSH

Continue praticando e explorando o Git, você está no caminho certo! 🧐

   or: git remote [-v | --verbose] show [-n] <name>
   or: git remote prune [-n | --dry-run] <name>
   or: git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]
   or: git remote set-branches [--add] <name> <branch>...
   or: git remote get-url [--push] [--all] <name>
   or: git remote set-url [--push] <name> <newurl> [<oldurl>]
   or: git remote set-url --add <name> <newurl>
   or: git remote set-url --delete <name> <url>

    -v, --[no-]verbose    be verbose; must be placed before a subcommand

PS C:\Users\johng\Downloads\logica-js-projeto_inicial\logica-js-projeto_inicial> git push.
git: 'push.' is not a git command. See 'git --help'.

The most similar command is
        push
        
# Para verificar a URL remota
git remote -v