On Mon, 21 Mar 2011 11:25:31 -0400
Barry Warsaw <ba...@python.org> wrote:
> 
> Does Mercurial have a way of acting like a centralized vcs to the end user,
> the way Bazaar does?  IOW, if Skip or others were more comfortable with a
> centralized workflow (which is entirely valid imo), can they set up their
> local workspace to enable that mode of operation?

I believe something like "hg pull -u && hg ci && hg push" would
emulate such behaviour: it would first put your working copy in sync
with remote, then let you commit, then push your new change.

We cannot emulate "svnmerge" for porting between branches, though - and
I doubt bzr can do it. That's because merges in common DVCSes are based
on the DAG, while svnmerge is a prettily ad-hoc free-form thing.

> If so, the devguide could describe that as a transitional step from the old
> svn way of doing things.

I think we should let things settle a few weeks before starting to
describe more workflows in the devguide.

Regards

Antoine.


_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to