Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-gui: Format author/committer times in ISO format
author
Shawn O. Pearce
<spearce@spearce.org>
Wed, 9 May 2007 04:48:27 +0000
(
00:48
-0400)
committer
Shawn O. Pearce
<spearce@spearce.org>
Wed, 9 May 2007 04:48:27 +0000
(
00:48
-0400)
This is a simple change to match what gitk does when it shows
a commit; we format using ISO dates (yyyy-mm-dd HH:MM:SS).
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
lib/blame.tcl
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
0511798
)
diff --git
a/lib/blame.tcl
b/lib/blame.tcl
index d6d57d889df30b66b8255dc16d18933a068e4234..8b032d959011f111c052fb4eee8be02aa6d45dd9 100644
(file)
--- a/
lib/blame.tcl
+++ b/
lib/blame.tcl
@@
-347,14
+347,20
@@
method _showcommit {lno} {
set author_time {}
catch {set author_name $header($cmit,author)}
catch {set author_email $header($cmit,author-mail)}
set author_time {}
catch {set author_name $header($cmit,author)}
catch {set author_email $header($cmit,author-mail)}
- catch {set author_time [clock format $header($cmit,author-time)]}
+ catch {set author_time [clock format \
+ $header($cmit,author-time) \
+ -format {%Y-%m-%d %H:%M:%S}
+ ]}
set committer_name {}
set committer_email {}
set committer_time {}
catch {set committer_name $header($cmit,committer)}
catch {set committer_email $header($cmit,committer-mail)}
set committer_name {}
set committer_email {}
set committer_time {}
catch {set committer_name $header($cmit,committer)}
catch {set committer_email $header($cmit,committer-mail)}
- catch {set committer_time [clock format $header($cmit,committer-time)]}
+ catch {set committer_time [clock format \
+ $header($cmit,committer-time) \
+ -format {%Y-%m-%d %H:%M:%S}
+ ]}
if {[catch {set msg $header($cmit,message)}]} {
set msg {}
if {[catch {set msg $header($cmit,message)}]} {
set msg {}
@@
-383,8
+389,8
@@
method _showcommit {lno} {
}
$w_cmit insert end "commit $cmit
}
$w_cmit insert end "commit $cmit
-Author: $author_name $author_email $author_time
-Committer: $committer_name $committer_email $committer_time
+Author: $author_name $author_email
$author_time
+Committer: $committer_name $committer_email
$committer_time
Original File: [escape_path $line_file($lno)]
$msg"
Original File: [escape_path $line_file($lno)]
$msg"