Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8840759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T10:32:21+00:00 2026-06-14T10:32:21+00:00

After Google-ing the whole day, I will have to ask experts to help me.

  • 0

After Google-ing the whole day, I will have to ask experts to help me.

I cloned some public SVN repo that I converted to git. This repo has just one master branch, and it starts from some specific version, say 1.0.

I also have a git repo that was created independently, and that starts with the same 1.0 version. I created this because I wanted to hack some public project. I just downloaded the source code, created empty git repo, added version 1.0 and proceeded to hack on it. This repo also has just master branch.

Now, I would lie to create a third git repo, where version 1.0 would be the starting point, and it would have two branches: ‘svn’ and ‘mystuff’. I would like to keep history of both branches.

       1.0
      /   \
     /     \
br. svn    br. mystuff
     |       |
   v1.1      v1.1'
   v1.2      v1.2'
   v1.3      v1.3'
    .          .
    .          .

If I had this I could easily get new revisions from SVN repo using svn2git, and easily merge them with my local “mystuff” branch. I don’t need to push to SVN repo, just fetch new revisions from it.

Can you help me make using git fun again?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T10:32:22+00:00Added an answer on June 14, 2026 at 10:32 am

    The kind-of-hacky way is using git format-patch to export all the commits of a repo to a directory, git checkout the other’s repo 1.0 branch, create a new branch (git checkout -b new-branch), and then git am your previously generated patches.

    So, let’s call public your clone of the public SVN repo, and local the git repo you made by downloading the source and hacked onto.

    cd local
    mkdir ../patches
    
    # -o tells the output directory for the patches
    # the git log ... gives you the hash of the second commit of the repo (the first one
    # changes are already present in your 'public' repo
    git format-patch -o ../patches/ $(git log --pretty=format:%H | head -n-1 | tail -1)
    
    cd ../public
    git checkout -b mystuff 1.0
    # Apply patches
    git am ../patches/*
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After googling and binging for a whole day about this, and even trying some
After googleing for a whole day, I've seen a lot of discussion on this
After googling a lot, I only have this space to ask you the next
After googeling for ages, and reading some stuff about async task in books. I
After googling a while, I found out I can make google searches using this
I have no idea how to write Bash and after googling around for a
This problem has been killing me for the entire day. I have a client
I am pretty new to programming in vba. I need some coding help which
I have done a number of google searches on this topic, but haven't been
While doing some hacking on my own site I encountered (after some googling) a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.