delete
delete

Reputation:

Pulled a repository using hg clone, but when using hg log can't see revisions

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

Upvotes: 1

Views: 175

Answers (1)

Michael Banzon
Michael Banzon

Reputation: 4967

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.

Upvotes: 3

Related Questions