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 …
0
votes
Mercurial in Windows doesn’t see .hgignore - why?
"hg status" shows lots of files in the ignored directories
Are you referring to .DS_Store and .Python exclusively? The rule for ^bin$ will only ignore entries w …
