I have a new git repo RepoA
with a proof of concept project in my laptop that isn't stored anywhere else and another repo RepoB
I checked out from Azure DevOps. I just want to copy the entire project in RepoA
into a folder in RepoB
while preserving the history of the project from RepoA
. So the history for RepoB
will display all the history entries for RepoA
along with RepoB
's history. Is this possible?
How can I do this in few steps (as opposed a mile long list of git cli commands in many SO answers). I don't want to filter anything in RepoA
, just copy the root folder into RepoB
with all the history intact.