views:

20

answers:

1

I have a base repository, located at /home/bla/repo/BASE_REPOSITORY I create a new repository, located at /home/bla/repo/new

Remember, the "new" repository already exists. I.e. I can't issue a command whereby the contents of the new one is deleted. I want to copy the BASE_REPOSITORY INTO this new repository.

Can I do this? If so, how?

+1  A: 
  • Make an export from base (getting files without being versioned)
  • Add those files to new
  • Commit
abatishchev