From 554e76f48da5407c30277e316876f95db2a80f37 Mon Sep 17 00:00:00 2001 From: dakkar Date: Sun, 13 Sep 2009 14:02:05 +0200 Subject: script to fix dates scans all the files known to git, and touches each of them to the date of the last commit that modified it --- fixdates.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 fixdates.sh diff --git a/fixdates.sh b/fixdates.sh new file mode 100644 index 0000000..2b23944 --- /dev/null +++ b/fixdates.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +thisdir="$(cd "$(dirname "$0")";pwd)" +cd "$thisdir" +git ls-files -z | \ +while read -d $'\0' filename; do + date="$(git-log -n 1 --pretty='format:%ct' -- "$filename")" + if [[ -n "$date" ]]; then + echo "updating <$filename> to date <$date>" + touch -d @"$date" "$filename" + fi +done -- cgit v1.2.3