Essentially I to get just the contents of the repository at the default commit. Conceptually similar to --depth=1 with git I think.
Essentially I to get just the contents of the repository at the default commit.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can specify up to which commit (from start to commit #5) You want to get the content.
The thing is – that Mercurial stores all the commits – as DIFFs.
This means – that if You want to get the latest state of the file1.txt, so what mercurial essentially does – is takes the file, as it was added, and applies all the diffs (deltas) onto that.
Basically – You can NOT get half of the repository, because of that.