#!/bin/bash HEAD_NOW='' HEAD_PREV='' # # # # from github and show function fetch_updates() { UPDATES=$(git fetch && \ comm --nocheck-order -3 \ <(git log --all --pretty="%H")\ <(git log --pretty="%H")) git show -s --format=%B $UPDATES }