Adding gbrt tool to view info about git branches

This commit is contained in:
Nick Nisi
2013-01-24 09:35:32 -06:00
parent 048449e07b
commit fd79fe70c1
2 changed files with 43 additions and 0 deletions

42
bin/gbrt Executable file
View File

@@ -0,0 +1,42 @@
#!/usr/bin/env ruby
def format_commit_info timestamp, time_desc, commit_id, message, ref_name
[
"#{timestamp.strftime("%y %b %d")}, #{timestamp.strftime("%l:%M%p").downcase}",
"(#{time_desc})",
commit_id,
message,
ref_name
]
end
def render_commit_info timestamp, time_desc, commit_id, message, ref_name, merged
[
timestamp,
time_desc,
"\e[32m#{ref_name}\e[0m",
(merged ? " #{commit_id}" : "+ \e[33m#{commit_id}\e[0m"),
"\e[#{message[/^Temp/] ? 31 : 90}m#{message.strip}\e[0m"
].join(' ')
end
commit_info = `git branch #{ARGV.join(' ')} | cut -c 3-`.strip.split("\n").reject {|ref_name|
ref_name[' -> ']
}.map {|ref_name|
`git log --no-walk --pretty=format:"%ct\n%cr\n%h\n%s" '#{ref_name}' --`.strip.split("\n").push(ref_name)
}.map {|commit_info|
[Time.at(commit_info.shift.to_i)].concat(commit_info)
}.sort_by {|commit_info|
commit_info.first # unix timestamp
}.reverse.map {|commit_info|
format_commit_info(*commit_info)
}.transpose.map {|column|
max_col_length = column.sort_by {|i| i.length }.last.length
column.map {|i| i.ljust(max_col_length) }
}.transpose.map {|commit_info|
commit_info.push(
`git merge-base HEAD #{commit_info[2]}`.chomp[0...7] == commit_info[2]
)
}.each {|commit_info|
puts render_commit_info(*commit_info)
}

View File

@@ -8,6 +8,7 @@
s = status --short
ss = status
br = branch -v
brt = "!sh -c gbrt"
# show a pretty log graph
lg = log --graph --pretty=oneline --abbrev-commit --decorate
# slight variation of pretty log graph