Changes between Version 9 and Version 10 of explainSvn


Ignore:
Timestamp:
Mar 23, 2016, 12:54:45 PM (8 years ago)
Author:
dmik
Comment:

Add mercurial import example

Legend:

Unmodified
Added
Removed
Modified
  • explainSvn

    v9 v10  
    4242rmdir pixman/tmp
    4343}}}
     44
     45Importing from a mercurial repository would look like this (an example for the NSPR project):
     46{{{
     47hg clone https://hg.mozilla.org/projects/nspr -r NSPR_4_12_RTM nspr/tmp
     48rm -rf nspr/tmp/.hg
     49mv `find nspr/tmp/ -maxdepth 1 -mindepth 1` nspr/vendor-current/
     50rmdir nspr/tmp
     51}}}
     52
    4453
    4554If it were a SVN repository, the command would look like this (an example for the ICU project):