Hi Concerning 'renaming the default branch' the following works
hg init echo "First" > test.org hg add test.org hg commit -u "Bernhard Riemann <[email protected]>" -m "First" echo "Second" >> test.org hg commit -u "Bernhard Riemann <[email protected]>" -m "Second" echo "Third" >> test.org hg commit -u "Bernhard Riemann <[email protected]>" -m "Third" echo "Forth" >> test.org hg commit -m "Fourth" hg up 0 hg branch feature hg amend hg evolve Now when I try the same for topics: hg init echo "First" > test.org hg add test.org hg commit -u "Bernhard Riemann <[email protected]>" -m "First" echo "Second" >> test.org hg commit -u "Bernhard Riemann <[email protected]>" -m "Second" echo "Third" >> test.org hg commit -u "Bernhard Riemann <[email protected]>" -m "Third" echo "Forth" >> test.org hg commit -m "Fourth" hg up 0 hg topic feature hg amend hg evolve --all It does not work, what do I miss? _______________________________________________ Mercurial mailing list [email protected] https://www.mercurial-scm.org/mailman/listinfo/mercurial
