Skip to content

Instantly share code, notes, and snippets.

@rckrdstrgrd
Last active November 18, 2016 12:38
Show Gist options
  • Save rckrdstrgrd/133d53138f30dea551ea0f9b1d5e6326 to your computer and use it in GitHub Desktop.
Save rckrdstrgrd/133d53138f30dea551ea0f9b1d5e6326 to your computer and use it in GitHub Desktop.
#!/bin/sh
gittouch() {
touch -ch -d "$(git log -1 --format=%ci $1 | cut -d ' ' -f 1,2)" $1
}
git ls-files |
while IFS= read -r file; do
gittouch "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment