-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
Low
-
None
-
Affects Version/s: 2.7.11
-
Component/s: None
-
None
If I use a "smart commit" message to start a review, it works fine when I first push the commit (using git). However, if I then later cherry-pick that commit into another branch and push that, it starts another review.
Steps to reproduce:
git branch my-feature-branch
git checkout my-feature-branch
... hack some code ...
git commit -m 'Implementing new feature. +review @bob @jim' -a
git push origin my-feature-branch
(review is created)
git checkout master
git cherry-pick <hash of above commit>
git push origin master
(second review is created)