Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 903 Bytes

clone-repository.md

File metadata and controls

34 lines (23 loc) · 903 Bytes

Clone Repository

Sounds easy and actually is! 😁

Clone is the action to download a repository into your workspace

Using Fork

  1. Go to Fork's File menu and click on the Clone option
  2. Paste the repository URL that you want to clone fork-clone-modal
  3. Choose the directory where you want to clone the repository
  4. Choose the account (if it's not already chosen)
  5. Click the Clone button

Using Terminal

Go to the directory where you want to clone the repository

  cd my-directory
  git clone https://github.com/from-zero-to-fullstack/repository-name.git

Using Visual Studio Code

  1. Go to Source Control left menu option
  2. Click the Clone Repository button vscode-clone-button

Now you can analyse the code, implementing new features or even fix some bugs 🚀