I'm seeing the command 'pull' and wondering how that's different from a 'clone'. Both terms seem to imply retrieving code from some remote repository. Is there some subtle distinction here?
|
|
|||||||
|
|
|
|
||
|
|
|
|
Use clone when you need to make a new repository based on another. Use pull after that to update the clone with new changesets. You cannot use clone to fetch just the newest changesets -- that is what pull is for. The pull command will compare the two repositories, find the missing changesets in your repository and finally transfer those. However, you are right that there are similarities between clone and pull: they both transfer history between repositories. If you clone first hg clone http://www.selenic.com/hg/ then this has the exact same effect as doing hg init hg cd hg hg pull http://www.selenic.com/hg/ hg update You get the exact same history in both cases. The clone command is more convenient, though, since it also edits the [paths] default = http://selenic.com/hg This is what lets you do |
||
|
|
|
|
clone creates a new repository as a copy of an existing repository. pull imports all changesets (not already present) from another repository into an existing repository. |
||
|
|
