回退到某个TAG
repo forall -c "git checkout tag名"
回退到当前的TAG(当前的TAG为最新的)
repo forall -c "git checkout -b tag名 tag名"
比对日期TAG
(在开发分支上)
repo forall -p -c "git log --since=2016-10-10 --until=2016-10-12">t
(在MASTER上)
repo forall -p -c "git log --since=2016-10-10 --until=2016-10-12 remotes/STSOO1/DEV_MASTER_SW2_BRH">t
回退其中的一次提交
git revert ID号
wq
注意(多笔提交从上向下依次撤销)