Show files changed yesterday
git diff master@{"yesterday"} --stat`
Yesterday's commits (last 24h)
git log --oneline --since=yesterday
Push to multiple remotes at once
Get your remotes URLs (for the next step)
git remote -v
Set your remotes
git remote set-url --add --push origin git@github.com:pixmin/remote1.git
git remote set-url --add --push origin git@github.com:pixmin/remote2.git
Check it out by running:
git remote show origin
When pushing using -v to check which remotes are updated:
git push -v