arc diff automatic detection of last commit which was not part of any revision
arc diff automatic detection of last commit which was not part of any revision
Event Timeline
DheerendraRathor updated the question from to arc diff automatic detection of last commit which was not part of any revision.Sep 25 2015, 6:39 PM2015-09-25 18:39:23 (UTC+0)
Comment Actions
let say this is my git tree
origin/master -> c1 -> c2 -> c3
at this point, arc diff results into creation of revision of c1, c2, c3. That's exactly what expected.
Now my reviews are pending and I started working on more stuff, so git tree will look like
origin/master -> c1 -> c2 -> c3 -> c4 -> c5 -> c6
this time arc diff will result into creation of revision of (c1, c2,.. c6) due to default ruleset. I want that arc diff should include only (c4, c5, c6) only.
I can achieve the same by using arc diff c4. But this situations is too frequent and doing arc diff <commit> is cumbersome because one have to do git log before that etc. So is there any ruleset in arcanist to handle that directly?