Re: [translations] updating an up-to-date file?!? |
[ Thread Index |
Date Index
| More lilynet.net/translations Archives
]
- To: Francisco Vila <paconet.org@xxxxxxxxx>
- Subject: Re: [translations] updating an up-to-date file?!?
- From: Federico Bruni <fedelogy@xxxxxxxxx>
- Date: Thu, 25 Nov 2010 19:41:30 +0100
- Cc: Translations list at lilynet <translations@xxxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=RIJVzQFnVxWUySkrWe1t+UamfCFMq0Y/0v5UR3Bswt4=; b=PydIgMvRht8JKjpDdKGqysfev/xYZL7XstqgniLroQhMmSvAnGoLFFP2fQYHFNsNUs YVw+JUotmUpD8eYT6uk7kYbNauHakgIg5RGytbsgq9byXsWFa2t5o2PNEG+2x1yRQQwj i32gMOPn4pjOQvVMUJroakZYf0bJMmpyA7jPk=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=jPOHTWFKH0BuJtZrcnYOjA3QRe8eOBA7XGAvNNLUskfjPlLzQ2Y0upqigjo3ETuBbN WyZl/fupWtJFrpgyLheZlIu2IX1m2hvFAOqLJZwa27X8x+5R624psc9g7NXHI7yyH21Z N613p3RCiPZb4sRLaysZdAZfDBEbkJaWl8fLc=
Il giorno gio, 25/11/2010 alle 10.39 +0100, Francisco Vila ha scritto:
> > I thaught I should always use the committish provided by this
> command:
> >
> > git rev-list HEAD |head -1
> >
> >
> > Why should I use the last committish of the original in this case?
>
> If the file is really up to date, both are equivalent. I use the
> committish of the original as extra data for my convenience: that way
> I know what exact version of the file am I in sync with.
>
It seems wise :)
Last question about update. Actually, I prefer using terminal rather
than web interface.
Could you please tell me if the following procedure is OK?
1) I check the commit date of my last revision with 'git log
path/to/file'
This date doesn't tell me exactly which version of original file I used,
but it's a good reference.
That's why your "committish strategy" explained above seems much
convenient.
2) 'git log path/to/original' and I pick the committish which is likely
to be the one I used in my last revision. After checking and comparing
I *should* be sure about it.
3) 'git diff committish path/to/original'
This should give me the diff from that committish to current one.
It's OK?
Thanks,
Federico