I have the following problem: I've have created a repository and made changes to it, and commited them in git. Now, I've realized that the name of the repository is wrong, and I have created another with the right name, and I wonder if there is a way to import all the code (together with the changes I've made) in the first repository into the second repository using git and not copy pasting it manually. In the first repository there is a branch with all of my changes.
Mind that I cannot directly change the name of the first repository, as it doesn't belong to me and I am unable to do so.
Any ideas?
My original idea is to copy-paste all of the classes and code, manually, from one repository to the other, but that is absolutely time-consuming as the first repository has to many classes and a lot of code, and some copy-pasting errors might take place. I just want a safe and fast way to do this.