Giter Site home page Giter Site logo

forks-and-clones-readme-cb-gh-000's Introduction

Forking and Cloning GitHub Repositories

Problem Statement

If you are familiar with how to create local repositories, you have the ability to create a logged history of your project.

What's great about git and open source is that lots of people are doing the exact same thing all around the world all the time.

In this lesson we'll learn how to acquire others' repositories. In a subsequent lesson we'll cover how to push our locally-created repositories onto the internet. Let's learn to acquire others' code!

Objectives

  1. Define remote
  2. Use git clone to copy a repository to your local machine
  3. Use git remote to list remotes
  4. Use git fork via GitHub to duplicate other organization's repositories into your own

Define remote

To work with or collaborate on any git project, you need to be able to manage your remote repositories. Remote repositories are versions of a repository that are hosted online, typically, on GitHub.

Use git clone to Copy a Repository to Your Local Machine

We use git clone to copy someone else's remote copy of their local repository to our machine.

  1. Navigate to the https://github.com/facebook/react repository

  2. Click the "Clone or Download" green button on the right.

  3. Make sure you select Use SSH as your URL type.

    SSH URL

  4. Click the "Copy to clipboard" button (highlighted below). This will copy the URL for us to use when we clone.

    Clone Repo Button

  5. In the terminal (accessed through the 'Sandbox' or Learn IDE), we need to run the git clone command. It takes the URL we just copied as an argument, like so:

    git clone your-copied-github-url

This will create a local copy of our forked GitHub repository.

Use git remote to List Remotes

If you use the ls command, you'll see git created a directory called react. Use cd to enter that directory.

cd react

Type git remote to see each remote available.

If you've cloned your repository, you should at least see origin. The remote called origin is the default name git gives to the remote you cloned from:

$ git remote
origin

Use git fork via GitHub to Clone Other Organization's Repositories Into Your Own.

Forking a GitHub repository is just a way to create a personal, online duplicate of it. When you fork a lab, GitHub creates a duplicate from the source organization's online version of the repository to your local duplicate of the repo.

It's like saying "Hey, can I have the Louvre's version of The Mona Lisa?" The Louve would say no. If you were to create an exact online duplicate by forking it from louvre/mona_lisa to your-name/mona_lisa the Louvre would be cut out of the, pardon the pun, picture. You could then copy your organization's version to your local machine with git clone.

Fork Button

Forking is a very common workflow for working with teams or working with or contributing to open sourced content in the GitHub community. You can fork any repository by clicking the "Fork" button at the top right of any GitHub repository.

Let's try a fork and clone workflow.

Click the GitHub icon at the top of this page:

github button

This will bring you to the "learn-co-students" version of this lesson. Click the 'Fork' button in the upper right corner of the page. You will be prompted to choose where the repository should be forked to, so go ahead and choose your account. GitHub will take a few moments to create the fork, then navigate to your copy of the repository. If all has gone well, you will see your username at the top of the page, followed by a / and the name of the repository, along with a link just below to the original repository.

More on forking in the GitHub docs.

The important take away is to not misuse "fork" and "clone" when speaking with other git users. To get a local copy: clone; to make an online copy of a repository to your personal organization so that you have the ability to update its master branch, fork.

Conclusion

GitHub gives developers many ways to collaborate. Using git fork and git clone in conjunction allow you to make local copies of others' code. As you saw with cloning React, this is something you can do on any public GitHub repository. So if you've found a GitHub repository that you'd love to build off of or modify for your own use, you can use this process to make your own copy. Often, the original authors will include license information regarding how you can use their repository, so make sure to check before you publish, sell or distribute any material you've forked, cloned and modified.

View Forks and Clones on Learn.co and start learning to code for free.

View Git Forks and Clones on Learn.co and start learning to code for free.

forks-and-clones-readme-cb-gh-000's People

Contributors

joshuabamboo avatar annjohn avatar drakeltheryuujin avatar sgharms avatar alexisadorn avatar pletcher avatar lawrend avatar maxwellbenton avatar gj avatar victhevenot avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.