タグ

visualizationとGitに関するnsyeeのブックマーク (5)

  • GitUp

    GitUp Work quickly, safely, and without headaches. The Git interface you've been missing all your life has finally arrived.

  • 卜部昌平のあまりreblogしないtumblr

    前回の続き。 前回の時点では「git blameが密になっているところはきっと活発に編集されていたに違いない」という仮説があったわけですが、これは当のところは、よくわからない。なぜかというと、blameというのは地層のように降り積もったコミットの表面に露頭してるところしか見せてくれないわけです。当に活発に更新されていたかを知るには、ようするに地質平面図じゃなくて地質断面図が必要なわけ。分かりますよね。 で、それはどうやって作ればいいかというと、gitには便利なgit log -pという、こういうとき便利だけど普段は使い道のなさそーなコマンドがあって、これは生のdiffをすべてだらだらと表示してくれるわけですよ。で、diffからblameを再構成するにはdiffの+行をひたすら集めてくればいいわけだけど、その時-行も一緒に覚えておいて、あるコミットでどのコミットが上書きされたかを覚えてお

    卜部昌平のあまりreblogしないtumblr
  • Visualizing git blame

    Git には git blame というコマンドがあり(他のツールでも同様の機能は提供されている)、これを使うことでソースコードのどこを書いたのが誰か、という情報がline-by-lineで取得できる。この情報は行単位なので一次元の情報だけれど、適切な空間充填曲線に乗せることで二次元にマッピングできて、それに適当に作者ごとに色をつけるということをやってみると色々楽しい。そのスクリプトはひじょうにstraight-forwardな記述だとこういった感じになる。上の絵はruby 1.8.7に対する実行結果で、ChangeLogとかのあきらかに面白くないファイルは除外してあるからまあ、そのままの結果ではないけれど、これを見ると色々な思いが去来する。 Ruby 1.8.7 は多数の開発者が手を入れており、少数の支配的な貢献者といったような存在をみいだすことができないしかしながら、全体がのっぺりと灰

    Visualizing git blame
  • Git Log in Calendar View

    For those interested, here’s how I made the git logs into the calendar view in the previous excuse-ridden post on why edgeyo‘s development has been slow the past 1.5 months. Thehe git log is piped into a csv file: xuanyi@gallifrey:~$ git log master --date=short --pretty=format:"%h%x09%an%x09%ad%x09%s" > edgeyoCommitLog.csv Here’s what the csv looks like A table of commit counts is created with Exc

  • bluef/gitgraph.js @ GitHub

    License BSD Authors Terrence Lee (kill889@gmail.com) Contact Terrence Lee (kill889@gmail.com) Download You can download this project in either zip or tar formats. You can also clone the project with Git by running: $ git clone git://github.com/bluef/gitgraph.js Source Code * |\ * \ |\ \ * | | | | * | | |\ | |_|/ |/| | | | * | * | | * | | |\ \ | |/ / |/| | * | | * | | |\ \ \ | |_|/ |/| | * | | | |

  • 1