#!/bin/sh
for F in $(git ls-tree -r --name-only HEAD); do
	touch -d "$(git log -1 --format="%ai" -- $F)" "$F"
done
