• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env bash
2
3git log --since="two weeks ago" --format=format:"%s" cros/upstream_validation | sort > upstream.log
4git log --since="two weeks ago" --format=format:"%s" | grep 'UPSTREAM\|BACKPORT' | sed 's/BACKPORT: \|UPSTREAM: //g' | sort > downstream.log
5comm upstream.log downstream.log -23 > missing.log
6
7git log --oneline --since="two weeks ago" cros/upstream_validation | grep -Ff missing.log
8