views:

23

answers:

1

Hi guys.

I download my code repository from:

hg clone https://[email protected]/sergiotapia/sharpdic

And now I have the folders on my machine; I can open the solution and develop on it. Now when I run hg log I don't see the initial push I made. Shouldn't I be able to see the initial push on the log?

I though cloning a repo got the complete changesets?

Thanks for the help. alt text

+4  A: 

It seems you have created a repository (hg init) and then cloned an external repository into it.

You simply need to skip the first step and then cd sharpdic after cloning for your commands to be executed in/on the right repository.

mbanzon
Thanks! It's working now.
Serg
@Sergio - please accept answer then :-)
mbanzon