Is there any way to tag the git repository based on the commit time.

Ex: If I have the release time, I want to tag all the repositories used in the release as of the release time. The main issue is the tagging may happen few hours after the release.

My repository is in a Windows XP system and I'm using msysgit to access git.

Thank you

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You could write a script that uses the --before option to git rev-list to get the last commit in a branch before the release timestamp, and then tag that commit.

git rev-list -n 1 --before=<timestamp> master
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.