DEV Community

ダニエリ for WoMakersCode

Posted on • Edited on

4 1

[Tutorial Git] Reconfigurando diretório HTTPS para SSH

Depois de ter feito a validação da sua chave SSH com o Github; caso você já tenha na sua máquinas projetos que usam o HTTPS, é possível fazer a troca de de HTTPS para SSH.

Vá até o repositório desejado e digite, no terminal:

$ git remote -v
Enter fullscreen mode Exit fullscreen mode
  • $ indica que você deve usar o usuário comum para fazer essa operação.

O retorno será algo como:

origin  https://github.com/danielle8farias/potential-broccoli.git (fetch)
origin  https://github.com/danielle8farias/potential-broccoli.git (push)
Enter fullscreen mode Exit fullscreen mode

Observe que após a palavra origin temos o endereço do nosso repositório remoto iniciando com https. Isso indica o nosso tipo de conexão.

Para fazer a troca para SSH, digite:

$ git remote set-url origin sua_url_ssh
Enter fullscreen mode Exit fullscreen mode

No meu caso, temos:

$ git remote set-url origin git@github.com:danielle8farias/potential-broccoli.git
Enter fullscreen mode Exit fullscreen mode

Se você não souber sua url ssh, ela é encontrada no Github na parte de clone or download, do seu repositório.

clone or download

Verificando nosso repositório novamente

$ git remote -v
Enter fullscreen mode Exit fullscreen mode

temos o retorno:

origin  git@github.com:danielle8farias/potential-broccoli.git (fetch)
origin  git@github.com:danielle8farias/potential-broccoli.git (push)
Enter fullscreen mode Exit fullscreen mode

Indicando que a troca foi feita com sucesso.

Caso queira fazer a troca de SSH para HTTP, basta fazer o caminho inverso desse.

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay