We are looking at using Stash to help us cleanup our repositories and are wondering if it possible to save the history in this situation
Current situation
13 seperate repos with history, branches, etc
We want to combine this into 1 repo with the old repos as folders under it and use Stash to make a project with this new single repo. Our question is there a way to retain the old history, branch info from the old repos in this new repo or do we lose it all?
Hi Devin,
You most certainly can keep your history. This is really a Git question, nothing related to Stash (might help your Googling).
My advice would be to look at git subtree. It allows you extract (and combine) subfolders to/from a repository.
git subtree add --prefix sub/dir/path https://your/repo.git master
You could also use something like git filter-branch to rewrite the history, but that might be a little more advanced.
Cheers,
Charles
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.