comparison tests/run-tests.py @ 19854:49d4919d21c2

shelve: add a shelve extension to save/restore working changes This extension saves shelved changes using a temporary draft commit, and bundles the temporary commit and its draft ancestors, then strips them. This strategy makes it possible to use Mercurial's bundle and merge machinery to resolve conflicts if necessary when unshelving, even when the destination commit or its ancestors have been amended, squashed, or evolved. (Once a change has been unshelved, its associated unbundled commits are either rolled back or stripped.) Storing the shelved change as a bundle also avoids the difficulty that hidden commits would cause, of making it impossible to amend the parent if it is a draft commits (a common scenario). Although this extension shares its name and some functionality with the third party hgshelve extension, it has little else in common. Notably, the hgshelve extension shelves changes as unified diffs, which makes conflict resolution a matter of finding .rej files and conflict markers, and cleaning up the mess by hand. We do not yet allow hunk-level choosing of changes to record. Compared to the hgshelve extension, this is a small regression in usability, but we hope to integrate that at a later point, once the record machinery becomes more reusable and robust.
author David Soria Parra <dsp@experimentalworks.net>
date Thu, 29 Aug 2013 09:22:13 -0700
parents 1b8054b98d68
children 6e74632170d3
comparison
equal deleted inserted replaced
19853:eddc2a2d57e6 19854:49d4919d21c2
339 hgrc.write('slash = True\n') 339 hgrc.write('slash = True\n')
340 hgrc.write('interactive = False\n') 340 hgrc.write('interactive = False\n')
341 hgrc.write('[defaults]\n') 341 hgrc.write('[defaults]\n')
342 hgrc.write('backout = -d "0 0"\n') 342 hgrc.write('backout = -d "0 0"\n')
343 hgrc.write('commit = -d "0 0"\n') 343 hgrc.write('commit = -d "0 0"\n')
344 hgrc.write('shelve = --date "0 0"\n')
344 hgrc.write('tag = -d "0 0"\n') 345 hgrc.write('tag = -d "0 0"\n')
345 if options.inotify: 346 if options.inotify:
346 hgrc.write('[extensions]\n') 347 hgrc.write('[extensions]\n')
347 hgrc.write('inotify=\n') 348 hgrc.write('inotify=\n')
348 hgrc.write('[inotify]\n') 349 hgrc.write('[inotify]\n')