So time passes, struggle continues, have thought several times that i have had alot of it figured out. Mercurial is big part of the issues. (i mean, the actual fixing of bugs is tricky, but thats part of the fun) Have had my workflow of mercurial overlooked alot, googled plenty and like i wrote above, thought several times that i had it figured out? then some new obstacle shows.
But now, i Think, this should be how todo it? Maby now i?d will be able to focus on fixing stuff?
1st run
$ hg bookmark master
1st work on bug1
$ hg bookmark bug1
$ hg bookmark bug2
$ hg bookmark bugN
$ hg update bug1
do work?
$ hg commit -m 'bug1-abc'
do more work
$ hg commit -m 'bug1-abc1' --amend
1st work on bug2
$ hg update bug2
do work
$ hg commit -m 'bug2-bcd'
do more work
$ hg commit -m 'bug2-bcd2' --amend
more work on bug1
$ hg update bug1
do work
$ hg commit -m 'bug1-abc2' --amend
work on new bug
$ hg update master
$ hg bookmark bugN
do work ?
$ hg commit -m 'bugN'
export patch for bug1
$ hg export -r -o file.patch