1
resposta

novidas github

No modulo 1 aula 10 esta pedido para acessa um projeto do sete no computado mais por mais que eu tente não consigo, aqui esta todos os dados PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git init Reinitialized existing Git repository in C:/Users/jor44/OneDrive/Área de Trabalho/logica/.git/ PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git add . PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git commit -m "Projeto inicial" On branch main nothing to commit, working tree clean PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git branch -M main PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git remote add origin git@github.com:JORGESUMPREM442/projeto1.git error: remote origin already exists. PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git remote add origin https://github.com/JORGESUMPREM442/projeto1.git error: remote origin already exists. PS C:\Users\jor44\OneDrive\Área de Trabalho\logica>

outra tentativa que falho

PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git init Reinitialized existing Git repository in C:/Users/jor44/OneDrive/Área de Trabalho/logica/.git/ PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git add . PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git commit -m "Projeto inicial" On branch main nothing to commit, working tree clean PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git branch -M main PS C:\Users\jor44\OneDrive\Área de Trabalho\logica>

git remote add origin git@github.com:JORGESUMPREM442/projeto1.git error: remote origin already exists. PS C:\Users\jor44\OneDrive\Área de Trabalho\logica>

outra falha

PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git init Reinitialized existing Git repository in C:/Users/jor44/OneDrive/Área de Trabalho/logica/.git/ PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git add . warning: in the working copy of 'nova aula/logica.code-workspace', LF will be replaced by CRLF the next time Git touches it PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git commit -m "projeto inicial" [master (root-commit) eb05a19] projeto inicial 19 files changed, 625 insertions(+) create mode 100644 adivinha.mais.html create mode 100644 ano copa html.html create mode 100644 codigo.html create mode 100644 estrelas html.html create mode 100644 futebol.html create mode 100644 imc.html create mode 100644 jogo html.html create mode 100644 mediaIdadeFamilia.html create mode 100644 nova aula/ex001 create mode 100644 nova aula/ex001 copy.txt create mode 100644 nova aula/logica.code-workspace create mode 100644 primeiro teste html create mode 100644 programa.3.html create mode 100644 programa.4.html create mode 100644 programa.html create mode 100644 programa5.html create mode 100644 "program\303\247\303\243o2.html" create mode 100644 tabuada create mode 100644 tabuada.HTML PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> git branch -M main PS C:\Users\jor44\OneDrive\Área de Trabalho\logica>

git remote add origin git@github.com:JORGESUMPREM442/projeto1.git PS C:\Users\jor44\OneDrive\Área de Trabalho\logica> ^C PS C:\Users\jor44\OneDrive\Área de Trabalho\logica>

1 resposta

Oi Jorge, tudo bem?

Pelo que entendi, você está tendo dificuldades para acessar um projeto no GitHub. Parece que você já está executando alguns comandos do Git no seu computador, mas está enfrentando problemas ao adicionar a origem remota.

Uma possível solução para esse problema é verificar se você já adicionou a origem remota corretamente. No seu caso, você está tentando adicionar a origem remota com o seguinte comando:

git remote add origin git@github.com:JORGESUMPREM442/projeto1.git

No entanto, você está recebendo o erro "remote origin already exists", o que indica que a origem remota já foi adicionada anteriormente.

Para corrigir isso, você pode verificar as origens remotas existentes no seu repositório Git usando o comando:

git remote -v

Esse comando irá listar as origens remotas configuradas. Se você já adicionou a origem remota corretamente, ela deve aparecer na lista. Caso contrário, você pode usar o comando git remote add para adicionar a origem remota corretamente.

Outra possível causa para o erro é que você já tenha criado um repositório no GitHub com o mesmo nome "projeto1". Nesse caso, o GitHub não permitirá que você crie um novo repositório com o mesmo nome. Você pode verificar que o repositório já existe acessando o link https://github.com/JORGESUMPREM442/projeto1 no seu navegador. Você precisará escolher um nome diferente para o novo repositório ou usar o repositório existente que no caso está vazio.

Um abraço e bons estudos.