* Return a timestamp to be used for --since/--until comparisons for this * commit, based on the revision options. */
| 4166 | * commit, based on the revision options. |
| 4167 | */ |
| 4168 | static timestamp_t comparison_date(const struct rev_info *revs, |
| 4169 | struct commit *commit) |
| 4170 | { |
| 4171 | return revs->reflog_info ? |
| 4172 | get_reflog_timestamp(revs->reflog_info) : |
| 4173 | commit->date; |
| 4174 | } |
| 4175 | |
| 4176 | enum commit_action get_commit_action(struct rev_info *revs, struct commit *commit) |
| 4177 | { |
no test coverage detected