how to push code to remote git repository without pulling and overwriting the existing code

975 Views Asked by At

I have this situation where I am migrating the huge size of code from SVN to GIT like 115GB individual repos. the problem is while migrating, the code was expanding like anything. 3GB code was expanding to 60GB. So I am planning to do by folder by folder migration. Now is there a way that I can push my code to Gitlab without pulling the existing remote data and the previous code in the repo should not be overwritten.

When i use this command: git push --set-upstream origin master -f

Its overwriting the existing code. I want to add the new folders in the existing git repo without pulling the code(Since i have less disk space).

Can anyone has a solution for this to push the code to remote repository without pulling the existing code and should not overwrite the existing code in gitlab? like merge the new code without pulling or overwriting in the remote repository.

0

There are 0 best solutions below