Attribution #139
Replies: 3 comments 12 replies
-
fwiw our team currently uses Would something like `--with "<co authors, ...>" be considered? |
Beta Was this translation helpful? Give feedback.
-
I'm not a fan of the |
Beta Was this translation helpful? Give feedback.
-
i use |
Beta Was this translation helpful? Give feedback.
-
Why
Teams don't use mob at all or only for some commands because co-authors aren't properly attributed, and this is very important to those teams.
Scope
mob done --squash
Usually, mob next creates WIP commits and
mob done --squash
puts all changes in the staging area and the user creates a single commit of all changes at the end.Approaches:
mob done --no-squash without mob next
Every user won't use
mob next
but instead create all commits in the WIP branch themselves. In the end,mob done --no-squash
merges all those commits back in main.mob done --no-squash with mob next
This combination probably doesn't make a lot of sense. Because who wants a git history with strange WIP commit messages anyway.
mob done --no-squash with mob next --message
This combination might make sense. Not sure yet.
Beta Was this translation helpful? Give feedback.
All reactions