Pulled a repository using hg clone, but when using hg log can't see revisions
I download my code repository from:
hg clone h开发者_运维知识库ttps://sergiotapia@bitbucket.org/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.
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.
精彩评论