What's the easiest way to commit and push a single file while leaving other modifications alone?
Solution 1:
It's been almost 2 years since I originally posed this question. I'd do it differently now (as I mentioned in a comment above the question above). What I'd do now would be to instead commit my changes to the one file in my local repo (you can use the hg record extension to only commit pieces of a file):
hg commit -m "commit message" filename
Then just push out.
hg push
If there's a conflict because other changes have been made to the repo that I need to merge first, I'd update to the parent revision (seen with "hg parents -r ." if you don't know what it is), commit my other changes there so I've got 2 heads. Then revert back to the original single file commit and pull/merge the changes into that version. Then push out the changes with
hg push --rev .
To push out only the single file and the merge of that revision. Then you can merge the two heads you've got locally.
This way gets rid of the mq stuff and the potential for rejected hunks and keeps everything tracked by source control. You can also "hg strip" revisions off if you later decide you don't want them.
Solution 2:
There's a Mercurial feature that implements shelve and unshelve commands, which give you an interactive way to specify changes to store away until a later time: Shelve.
Then you can hg shelve
and hg unshelve
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.
It is included with Mercurial as an "extension" which just means you have to enable it in your hg config file.
Notes for really old versions of Mercurial (before shelve was included -- this is no longer necessary):
I didn't see any great install instructions with some googling, so here is the combined stuff I used to get it working:
Get it with:
hg clone http://freehg.org/u/tksoh/hgshelve/ hgshelve
The only file (currently) in the project is the hgshelve.py file.
Modify your ~/.hgrc to add the shelve extension, pointing to where you cloned the repo:
[extensions]
hgshelve=/Users/ted/Documents/workspace/hgshelve/hgshelve.py
Solution 3:
tl;dr: My original explanation looks complicated, but I hope it fully explains how to use a patch queue. Here's the short version:
$ hg qnew -m "migration notes" -f migration my_migration.sql
$ hg qnew -f working-code
# make some changes to your code
$ hg qrefresh # update the patch with the changes you just made
$ hg qfinish -a # turn all the applied patches into normal hg commits
Mercurial Queues makes this sort of thing a breeze, and it makes more complex manipulation of changesets possible. It's worth learning.
In this situation first you'd probably want to save what's in your current directory before pulling down the changes:
# 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
Now let's do some additional work on the working code. I'm going to keep doing qseries
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.
$ 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
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 hg qpop -a
. Just to show the effect upon the patch queue I'll pop them off one at a time.
$ 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
At this point, it's as if there are no changes in your directory. Do the hg fetch
. 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.
$ 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
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.
$ hg qpush
$ hg qseries -v
0 A working-code.patch
$ hg export qtip > 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
I'm hugely addicted to patch queues for development and mq
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.
Solution 4:
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.
In your example, you could simply pull/merge your change into the integration/upstream repository and push it directly up to the remote server.