Skip to content

Instantly share code, notes, and snippets.

@moose-horizons
Last active April 3, 2023 16:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moose-horizons/5f25bc0846afb9d5771e02c9c68eb690 to your computer and use it in GitHub Desktop.
Save moose-horizons/5f25bc0846afb9d5771e02c9c68eb690 to your computer and use it in GitHub Desktop.
Copy a repo without forking

How to copy a GitHub repo without forking

GitHub only lets you fork a repo once, if you want to make more than one copy of a project here's how you can do it. Useful for starter code.

  1. Create a new empty folder for your project and initialize git

    cd where-you-keep-your-projects
    mkdir your-project-name
    cd your-project-name
    git init
  2. "Pull" the repo you want to copy:

    # git url is the same as the clone URL
    git pull git-url-of-the-repo-you-want-to-copy
  3. Create a new repository for your project on GitHub

  4. Push your code to the new repository you just created

    git remote add origin git-url-of-the-new-repo-you-created
    git push -u origin master
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment