Undoing accidental hg amend on top of Mercurial queue

2018-03-11 Thread Faheem Mitha
t back my applied MQ patch? I've also posted this on Stack Overflow - https://stackoverflow.com/q/49219477/350713 Please CC me on any reply. Thanks in advance. Regards, Faheem Mitha #!/bin/sh cd /tmp hg init test cd test echo "This is foo" >> foo

Evolve with named branches vs Evolve with topic branches

2019-03-11 Thread Faheem Mitha
workable and simpler to me. If I rebase the named branch to default, the named branch is obsoleted, and one can forget about it. I think this would work for my purposes. But is there anything I am missing that makes named branches an unsuitable choice for this purpose

hg unshelve error handling - an example

2021-05-12 Thread Faheem Mitha
t was not possible, perhaps it could keep track of branch or topic name and give a warning if they differ on unshelve? See for example https://bz.mercurial-scm.org/show_bug.cgi?id=6123. Regards, Faheem Mitha # shelveinterrupt.sh # #!/bin/bash

Re: Pulling topics

2021-11-06 Thread Faheem Mitha
On Sat, 6 Nov 2021, Craig Ozancin wrote: It is possible to pull both branches and bookmarks using the -b / -B options. Is there any way to specifically pull a topic?  hg init test cd test hg pull -r topicname reposname works for me here. That will pull everything up to the topic