git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* How to add daily tags for a central repo?
@ 2010-06-01  5:21 roylee17
  2010-06-01  6:43 ` Michael J Gruber
  0 siblings, 1 reply; 10+ messages in thread
From: roylee17 @ 2010-06-01  5:21 UTC (permalink / raw)
  To: git


Hi,

We currently host our projects on a central server.
For the daily build purpose, I currently using a script to do the following
steps:

  1. clone the project from the central server

  2. find the target commit for a specified date
      commit=`git log origin/master -n1 --format=%H --until="${timespec}
00:00:00"`

  3. tag the commit
      git tag -f daily/${timespec} ${commit}

  4. push the tag up to the central server

This usually works fine and allows us to tag earlier commit with past dates

However, it depends on the "COMMIT DATE", which is a local time to the
developer who
committed the changes.
And if some developer didn't have the time or date configured correctly on
his machine,
the changes committed by him may not be included in a tag, even it is pushed
to the 
on a date earlier than the target date to tag.

Alternatively, we can queue the job to do the following steps "on a target
date":

1. clone the project from the central server
2. tag the "latest commit"
3. push the tag to the server

But I'd like to know better ways to do the daily tag things?

Roy
-- 
View this message in context: http://git.661346.n2.nabble.com/How-to-add-daily-tags-for-a-central-repo-tp5124575p5124575.html
Sent from the git mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-06-02  7:55 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-01  5:21 How to add daily tags for a central repo? roylee17
2010-06-01  6:43 ` Michael J Gruber
2010-06-01  7:55   ` Roy Lee
2010-06-01  8:05     ` Michael J Gruber
2010-06-01  8:25       ` Roy Lee
2010-06-01  8:52         ` Michael J Gruber
2010-06-01  9:45           ` Roy Lee
2010-06-01 22:20             ` Ilari Liusvaara
2010-06-02  4:40             ` Junio C Hamano
2010-06-02  7:55               ` Roy Lee

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).