Jeff Squyres wrote:
> Here's what I typically run to bring down changes from SVN to HG:
>
> # Ensure all the latest hg repo changes are in the working dir
> hg up
> # Bring in all the SVN changes
> svn up
> # Refresh the .hgignore file (may change due to the svn up)
> ./contrib/hg/build-hgignore.pl
> # Add / remove any files to hg
> hg addremove
> # Now commit to hg
> hg ci -m "Up to SVN rzzzzz"
>
> Would you mind adding something like this to the wiki page?
As it has been spoken, so has it been done:
https://svn.open-mpi.org/trac/ompi/wiki/UsingMercurial#SyncingSVNandHGworkspaces
|