Robert Bradshaw wrote: > It might be interesting if there was a way to have a partial > history, so that one could easily make patches/pull/move forward, but > of course not roll back to arbitrary points in time. I don't know if > that's possible with hg.
A user can get that effect themselves by initializing a new hg repository in their source before they start to modify it. Then it's easy to generate patches relative to whatever they started with. I did that myself when I developed the yield-from implementation for Python, and it worked very well. You could facilitate it by including a .hgignore file in the source distribution excluding .pyc files, etc. to save the user from having to create his own. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
