DEV Community

ダニエリ for WoMakersCode

Posted on • Edited on

9

[Tutorial Git] Copiando um repositório existente (git clone)

Vá até o diretório na sua máquina em que você deseja colocar o repositório e digite no terminal:

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

Caso deseje copiar, além do branch padrão, algum outro branch do repositório, digite:

$ git fetch origin nome_do_branch_remoto:nome_que_deseja_dar_para_o_branch_local
Enter fullscreen mode Exit fullscreen mode

Para pegar o link, vá até o repositório remoto desejado e na parte direita clique no botão clone or download, como mostrado na imagem abaixo.

clone or download

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

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay