Skip to content

Instantly share code, notes, and snippets.

@flxai
Created December 31, 2015 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flxai/235122d9ff242dbb8c67 to your computer and use it in GitHub Desktop.
Save flxai/235122d9ff242dbb8c67 to your computer and use it in GitHub Desktop.
#!/bin/bash
for f in $(ls -tr1 "$1"); do
d="$(stat -c%y $f | awk '{print $1}')T00:00:00"
echo $d $f
git add $f
GIT_COMMITER_DATE="$d" GIT_AUTHOR_DATE="$d" git commit -m "Add $f"
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment