0
votes
Using mercurial, what’s the easiest way to commit and push a single file while leaving other modifications alone?
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 co …
1
vote
How can I ignore everything under a folder in Mercurial
Both of those will also filter out a directory called cabin, which might not be what you want. If you're filtering top-level, you can use:
^/bin/
For …
