Delivery-Date: Fri, 27 Feb 2015 00:58:47 -0500
Return-Path: <tor-talk-bounces@lists.torproject.org>
X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on moria.seul.org
X-Spam-Level: 
X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DATE_IN_PAST_06_12,
	RCVD_IN_DNSWL_MED,T_RP_MATCHES_RCVD,URIBL_BLOCKED autolearn=ham version=3.3.1
X-Original-To: archiver@seul.org
Delivered-To: archiver@seul.org
Received: from eugeni.torproject.org (eugeni.torproject.org [38.229.72.13])
	(using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by khazad-dum.seul.org (Postfix) with ESMTPS id BEC541E0E70
	for <archiver@seul.org>; Fri, 27 Feb 2015 00:58:45 -0500 (EST)
Received: from eugeni.torproject.org (localhost [127.0.0.1])
	by eugeni.torproject.org (Postfix) with ESMTP id 178A633B23;
	Fri, 27 Feb 2015 05:58:41 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
 by eugeni.torproject.org (Postfix) with ESMTP id 6390433B0D
 for <tor-talk@lists.torproject.org>; Fri, 27 Feb 2015 05:58:37 +0000 (UTC)
X-Virus-Scanned: Debian amavisd-new at 
Received: from eugeni.torproject.org ([127.0.0.1])
 by localhost (eugeni.torproject.org [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id vkOK7vFTPHs1 for <tor-talk@lists.torproject.org>;
 Fri, 27 Feb 2015 05:58:37 +0000 (UTC)
Received: from mail01.sigterm.no (unknown [193.150.121.27])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by eugeni.torproject.org (Postfix) with ESMTPS id 2B74133A29
 for <tor-talk@lists.torproject.org>; Fri, 27 Feb 2015 05:58:37 +0000 (UTC)
X-Greylist: delayed 456 seconds by postgrey-1.34 at eugeni;
 Fri, 27 Feb 2015 05:58:37 UTC
Received: from smtp.postman.i2p (unknown [193.150.121.26])
 by postman.meeh.i2p (Postfix) with ESMTP id CD0342E3412
 for <tor-talk@lists.torproject.org>; Fri, 27 Feb 2015 06:50:51 +0100 (CET)
X-Virus-Scanned: clamav-milter 0.97 on milter.postman.i2p
X-Mailer: smtp.postman.i2p - Official I2P Mailer
From: str4d <str4d@i2pmail.org>
MIME-Version: 1.0
To: tor-talk@lists.torproject.org
References: <54EE2279.3020401@openmailbox.org>
 <8661ap34fx.fsf@atlantis.meejah.ca>
 <20150226003551.AFE02AE3D8@smtp.postman.i2p>
In-Reply-To: <20150226003551.AFE02AE3D8@smtp.postman.i2p>
Message-Id: <20150226205556.46686AE3D6@smtp.postman.i2p>
Date: Thu, 26 Feb 2015 20:55:56 +0000 (UTC)
Subject: Re: [tor-talk] git: application level leaks and best practices?
X-BeenThere: tor-talk@lists.torproject.org
X-Mailman-Version: 2.1.15
Precedence: list
Reply-To: tor-talk@lists.torproject.org
List-Id: "all discussion about theory, design,
 and development of Onion Routing" <tor-talk.lists.torproject.org>
List-Unsubscribe: <https://lists.torproject.org/cgi-bin/mailman/options/tor-talk>, 
 <mailto:tor-talk-request@lists.torproject.org?subject=unsubscribe>
List-Archive: <http://lists.torproject.org/pipermail/tor-talk/>
List-Post: <mailto:tor-talk@lists.torproject.org>
List-Help: <mailto:tor-talk-request@lists.torproject.org?subject=help>
List-Subscribe: <https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-talk>, 
 <mailto:tor-talk-request@lists.torproject.org?subject=subscribe>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: tor-talk-bounces@lists.torproject.org
Sender: "tor-talk" <tor-talk-bounces@lists.torproject.org>

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Ben Tasker wrote:
>>> - Is the timezone included in commit timestamps?
>> Yes.
> 
> You can override this behaviour, but it's not particularly
> convenient to do:
> 
> git commit --date=2015-02-25T01:00:00+0000 -m "fixed it"
> 
> You could probably create an alias within git to save typing,
> though you'd still have to get used to using your new alias. As far
> as I know, there isn't a global option to force this behaviour
> (there is one to force git log to use UTC, but that's not much help
> here)

There is if you use bash (or a similar shell environment):

alias git='TZ=UTC git'

If you only want to force UTC for occasional commands then just add
"TZ=UTC" in front of the command, but I personally prefer redefining
the git command like above, to prevent accidentally forgetting.

str4d

> 
> 
> 
> On Thu, Feb 26, 2015 at 12:24 AM, meejah <meejah@meejah.ca> wrote:
> 
>> Nusenu <nusenu@openmailbox.org> writes:
>> 
>>> Has someone done an analysis of git over Tor already?
>> 
>> Not that I'm aware, but that'd be cool.
>> 
>>> - Is the timezone included in commit timestamps?
>> 
>> Yes.
>> 
>>> - What other (metadata) is potentially leaked?
>> 
>> Beware that there are both committer and author email addresses
>> in commit objects (but typically porcelain commands only show you
>> one of them).
>> 
>> -- meejah -- tor-talk mailing list -
>> tor-talk@lists.torproject.org To unsubscribe or change other
>> settings go to 
>> https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-talk
>> 
> 
> 
> 
-----BEGIN PGP SIGNATURE-----

iQIcBAEBCgAGBQJU74g+AAoJEIA97kkaNHPn8Q4P/2LVZDNz44Y7RbPHJB48HQ/Q
rPy84yU9FCsbIwZkE3eZVb12u1AdKZ28k8+VfgOjHTrufX43S7NMUxh49GE6E0TA
tA3d9iIUahS5PhymzQLtDgDJGBAI34qzlcL/Ezfio22mwcQ1zE9CC4RkwmOjyu+3
4wkXkiMu4/g26vlSp+mfaFTJEVp4PqXh5tEvry+/VBb3qYwvr/VxwBKwQ6pnZ6bp
6ym2PWpKXZVVYMy/UgERq1aVE96FBllvhPOyyem70zoLSbMMdvHuIlnzQNLkPQj3
Dhw5tptaf5SM0X7ZuC8iJ8QcYTLgPGhM+wgmVMlRp3JECydy1IGZrgZcQBf0aSft
HxFerGngU0maf7TOtZ5qIl1XisP/P7BCQpHC5kPDAqGN1lD/8kuI0jimW0aOjcx5
Qn4ELtLg5508sVhw9myJlAB5ITCpuRJ2ONfiDMwx/X93ZS69vS6S4OO2fNO3oTvT
PIvEvSme38M6oZ9waBq/BjAxmbxjUbgP+NvNS+M6GoaF0ZLgUn33F64ypkEzZbPw
oLixif8nFoC9cxtAC5vFz8DlE/zQkBADp9VsBFD2A7cfPCGd/7qWjm8wYADMyEK5
uV9ebQ3RWYTQb/nGTxNvLCejvUYSJfdBjFHX1/btotMgZfC0WYWqomoGMJIyrqW0
GCcSGUyoiJ+P90PXFXAJ
=Ldm1
-----END PGP SIGNATURE-----
-- 
tor-talk mailing list - tor-talk@lists.torproject.org
To unsubscribe or change other settings go to
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-talk

