From 51e59b58c2deb94312a72291be0d76749010e015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulrich=20Sp=C3=B6rlein?= Date: Sat, 12 May 2012 17:53:42 +0200 Subject: Fix timestamps of notes to adhere to git standards by using +0000 instead of -0000. --- src/repository.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/repository.cpp b/src/repository.cpp index beb8caf..25215ae 100644 --- a/src/repository.cpp +++ b/src/repository.cpp @@ -674,7 +674,7 @@ void Repository::Transaction::commitNote(const QByteArray ¬eText, bool append QTextStream s(&repository->fastImport); s << "commit refs/notes/commits" << endl - << "committer " << QString::fromUtf8(author) << ' ' << datetime << " -0000" << endl + << "committer " << QString::fromUtf8(author) << ' ' << datetime << " +0000" << endl << "data " << message.length() << endl << message << endl << "N inline " << commitRef << endl -- cgit v1.2.1