Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T15:15:21Z http://stackoverflow.com/feeds/question/125272 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le 13 Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Ted Naleid 2008-09-24T03:33:09Z 2009-02-20T12:39:22Z <p>I'm relatively new to Mercurial and my team is trying it out right now as a replacement for Subversion. </p> <p>How can I commit and push a single file out to another repository while leaving other modifications in my working directory uncommitted (or at least not pushed to the other repository)?</p> <p>This happens for us with database migrations. We want to commit the migration to source control so a DBA can view and edit it while we're working on the code modifications to go along with that database migration. The changes aren't yet ready to go so we don't want to push all of them out.</p> <p>In subversion, I'd simply do:</p> <pre><code>svn add my_migration.sql # commit only the migration, but not the other files I'm working on svn commit -m "migration notes" my_mygration.sql </code></pre> <p>and continue working locally.</p> <p>This doesn't work with mercurial as when I'm pushing it out to the other repository, if there are changes to it that I haven't pulled down, it wants me to pull them down, merge them, and commit that merge to the repository. Commits after a merge don't allow you to omit files so it forces you to commit everything in your local repository.</p> <p>The easiest thing that I can figure out is to commit the file to my local repository, clone my local repository, fetch any new changes from the actual repository, merge them and commit that merge, and them push my changes out.</p> <pre><code>hg add my_migration.sql hg commit -m "migration notes" my_migration.sql cd .. hg clone project project-clone cd project-clone hg fetch http://hg/project hg push http://hg/project </code></pre> <p>This works, but it feels like I'm missing something easier, some way to tell mercurial to ignore the files already in my working directory, just do the merge and send the files along. I suspect mercurial queues can do this, but I don't fully grok mq yet.</p> <p>Thanks to Josh Matthews below, the shelve command is exactly what I'm looking for. I didn't see any great install instructions with some googling, so here is the combined stuff I used to get it working:</p> <p>Get it with:</p> <pre><code>hg clone http://freehg.org/u/tksoh/hgshelve/ hgshelve </code></pre> <p>The only file (currently) in the project is the hgshelve.py file.</p> <p>Modify your ~/.hgrc to add the shelve extension, pointing to where you cloned the repo:</p> <pre><code>[extensions] hgshelve=/Users/ted/Documents/workspace/hgshelve/hgshelve.py </code></pre> <p>Then you can <code>hg shelve</code> and <code>hg unshelve</code> to temporarily store changes away. It lets you work at the "patch hunk" level to pick and choose the items to shelve away. It didn't appear to shelve a file had listed for adding, only files already in the repo with modifications.</p> http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le/125301#125301 7 Answer by Josh Matthews for Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Josh Matthews 2008-09-24T03:41:32Z 2008-09-24T03:41:32Z <p>There's a Mercurial extension that implements shelve and unshelve commands, which give you an interactive way to specify changes to store away until a later time: <a href="http://www.selenic.com/mercurial/wiki/index.cgi/ShelveExtension" rel="nofollow">Shelve</a>.</p> http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le/189835#189835 0 Answer by unknown (yahoo) for Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? unknown (yahoo) 2008-10-10T01:35:31Z 2008-10-10T01:35:31Z <p>Another option if you don't want to rely on extensions is to keep a clone of your upstream repository locally that you only use for these sorts of integration tasks.</p> <p>In your example, you could simply pull/merge your change into the integration/upstream repository and push it directly up to the remote server.</p> http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le/569429#569429 3 Answer by Kobold for Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Kobold 2009-02-20T12:39:22Z 2009-02-20T12:39:22Z <p>Mercurial Queues makes this sort of thing a breeze, and it makes more complex manipulation of changesets possible. It's worth learning.</p> <p>In this situation first you'd probably want to save what's in your current directory before pulling down the changes:</p> <pre><code># create a patch called migration containing your migration $ hg qnew -m "migration notes" -f migration.patch my_migration.sql $ hg qseries -v # the current state of the patch queue, A means applied 0 A migration.patch $ hg qnew -f working-code.patch # put the rest of the code in a patch $ hg qseries -v 0 A migration.patch 1 A working-code.patch </code></pre> <p>Now let's do some additional work on the working code. I'm going to keep doing <code>qseries</code> just to be explicit, but once you build up a mental model of patch queues, you won't have to keep looking at the list.</p> <pre><code>$ hg qtop # show the patch we're currently editing working-code.patch $ ...hack, hack, hack... $ hg diff # show the changes that have not been incorporated into the patch blah, blah $ hg qrefresh # update the patch with the changes you just made $ hg qdiff # show the top patch's diff </code></pre> <p>Because all your work is saved in the patch queue now, you can unapply those changes and restore them after you've pulled in the remote changes. Normally to unapply all patches, just do <code>hg qpop -a</code>. Just to show the effect upon the patch queue I'll pop them off one at a time.</p> <pre><code>$ hg qpop # unapply the top patch, U means unapplied $ hg qseries -v 0 A migration.patch 1 U working-code.patch $ hg qtop migration.patch $ hg qpop $ hg qseries -v 0 U migration.patch 1 U working-code.patch </code></pre> <p>At this point, it's as if there are no changes in your directory. Do the <code>hg fetch</code>. Now you can push your patch queue changes back on, and merge them if there are any conflicts. This is conceptually somewhat similar to git's rebase.</p> <pre><code>$ hg qpush # put the first patch back on $ hg qseries -v 0 A migration.patch 1 U working-code.patch $ hg qfinish -a # turn all the applied patches into normal hg commits $ hg qseries -v 0 U working-code.patch $ hg out migration.patch commit info... blah, blah $ hg push # push out your changes </code></pre> <p>At this point, you've pushed out the migration while keeping your other local changes. Your other changes are in an patch in the queue. I do most of my personal development using a patch queue to help me structure my changes better. If you want to get rid of the patch queue and go back to a normal style you'll have to export your changes and reimport them in "normal" mercurial.</p> <pre><code>$ hg qpush $ hg qseries -v 0 A working-code.patch $ hg export qtip &gt; temp.diff $ rm -r .hg/patches # get rid of mq from the repository entirely $ hg import --no-commit temp.diff # apply the changes to the working directory $ rm temp.diff </code></pre> <p><hr /></p> <p>I'm hugely addicted to patch queues for development and <code>mq</code> is one of the nicest implementations out there. The ability to craft several changes simultaneously really does improve how focused and clean your commits are. It takes a while to get used to, but it goes incredibly well with a DVCS workflow.</p>