Dogweather
Dogweather

Reputation: 16819

How do I create a new GitHub repo from a branch in an existing repo?

I have master and new-project branches. And now I'd like to create a brand new repo with its master based on the new-project branch.

Background: I have one repository which contains three independent applications. It didn't start out this way. There was originally just one app in the repo. Over time, however, business needs have changed. One app became two (a legacy version and a re-write.) A web service was added. Separate branches were used to contain the three projects. However, they don't share any code. And so it'd be simpler to have them split out into their own repos.

Upvotes: 264

Views: 143909

Answers (8)

J. C. Salomon
J. C. Salomon

Reputation: 4313

git clone -b new-project /path/to/repo /new/repo/path

Within GitHub, you can “fork” the repo, then go to the Admin tab in your clone. Beneath “Repository name” and “Visibility” is “Default Branch” with a drop-down menu of branches. Choose new-project.

Edit: I just realized it’s the master branch you want set, not just the “default” branch. So…

  • On GitHub, clone them/repo to you/repo.
  • Run git clone [email protected]:you/repo.git
  • Start gitk.
  • [You might want to create an old-master branch so you don’t lose track of the old commits.]
  • Find most recent commit on the new-project branch, right-click on the commit message, and select “Reset master branch to here”. (You can also do this at the command line using git-reset, but I haven’t figured out the correct invocation.)

Your next push up to your GitHub repo will need to be done with the --force option, but otherwise you’re done.

If it’s one of your own repos you’re doing this to…

  • Run git clone [email protected]:you/orig.git
  • Run git clone orig copy
  • As I described above, but from within the local copy repo, reset the master branch to where you want it.
  • Create the empty GitHub project you/copy. Follow the directions on GitHub to set up that project as a remote for your local version of copy, push master, and you’re done!

Upvotes: 9

If you are in love with SourceTree just do some simple step

  1. Check out the brand you want to clone as new repo

  2. Open terminal on this brand by click on the terminal button on toolbar in SourceTree

  3. Give the command to the terminal $ git push https://github.com/accountname/new_repo.git

The git command based on Alexey Kislitsin's answer above.

Upvotes: 0

Alexey Kislitsin
Alexey Kislitsin

Reputation: 806

cd to local repo containing old_branch and:

$ git push https://github.com/accountname/new_repo.git +old_branch:master

Upvotes: 49

HilthPH
HilthPH

Reputation: 35

If you want other branch instead of main, just do this,

  1. Create new-repo on Github
  2. CD to the old repo (In my case, I am at the old repo and the branch I want to copy)
  3. git push https://github.com/your_username/new-repo.git +branch_from_the_old_repo:the_main_or_whichever_branch_from_the_new_repo

I copied a branch from my old repo to my new repo (It was pushed into another branch instead of main, it depends on what you type after the colon (the BOLD part on step 3))

Upvotes: 2

Dogweather
Dogweather

Reputation: 16819

I started with @user292677's idea, and refined it to solve my problem:

  1. Create the new-repo in github.
  2. cd to your local copy of the old repo you want to extract from, which is set up to track the new-project branch that will become the new-repo's master.
  3. $ git push https://github.com/accountname/new-repo.git +new-project:master

The new Github repo is finished. The result is;

  • a new Github repository named new-repo,
  • whose master corresponds to the old repo's new-project, with
  • all history preserved.

In fact, I found that by using this method, I could create the new repo with a hand-picked selection of branches, renamed as I wanted:

$ git push [email protected]:accountname/new_repo +new-project:master +site3a:rails3

The result is that the pre-existing site3a branch is now also moved to the new repo and will appear as rails3. This works really well: the network diagram shows the new master and rails3 with full history and in their correct relationship to each other.

Update 2013-12-07: Used this with another project, and verified that this recipe still works.

Update 2018-01-11: Updated step 3. to use GitHub recommendation for https protocol. Recipe still works.

Upvotes: 462

Joe
Joe

Reputation: 1045

  1. Create the NEW_REPOSITORY in github.
  2. cd OLD_REPOSITORY
  3. git push https://github.com/accountname/NEW_REPO +master:master

And that is all. (Note: git history preserved)

I had tried the answer above and found it not specific enough as it didn't specify +master:master which is what I needed to make it work. It works great.

Source (with my modifications to avoid ssh issues with github): Mauricio Aiello, former Java Senior Developer, https://www.quora.com/How-do-I-create-a-new-GitHub-repository-from-a-branch-in-an-existing-repository

Upvotes: 13

Julio Flores
Julio Flores

Reputation: 433

Remembering that when you simply create a new repo, you lose reference to the old one, and make it harder to maintain any update to the original project synched to the new one. Perhaps isn't it better to fork the repo?

Upvotes: 0

Kjuly
Kjuly

Reputation: 35181

Not sure whether this is a good way, but it's easy anyway:

git clone -b new-project [email protected]:User/YourProject.git newProjcet

Then create a new repo on github, and push it.

Upvotes: 2

Related Questions