-
-
Notifications
You must be signed in to change notification settings - Fork 160
Description
It would be nice if you could keep all commits that were not created by mob next
.
We are used to make very fine grained commits, like write a failing test, commit, write code to pass test, commit. Discussing commit messages is usually part of the mobprogramming. So it would be really nice to have a way to keep intermediate commits when calling mob done
.
Alternatively there could be a way to call mob done
without actually ending the mob session. Something like mob commit "some message"
which would effectively do:
mob done && git commit -m "some message" && git push && mob start <remaining timer>
This would solve our problem for now but i can see that this probably would not work for all teams.
What do you think? Would this be a useful feature or do the frequent commits just break the flow to much?