git-tag

git tag - based on commit time

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...

git push tag -> master

Hi, I am trying to accomplish something that is probably very simple, though I cannot figure out how, or what I'm doing wrong. So to get straight to the point: I want to push for example my tag 1.0.0 to my remote master branch. What I'm doing now is the following: git push production +1.0.0:master Yes, I want to force the push beca...