この4月で、Gitが誕生してからちょうど10年になるようだ。 10年前、つまり一番最初のGitはどのようなプログラムだったんだろう? 当然だけど Git プロジェクトのリポジトリには10年前の最初の姿が e83c516 というコミットとして記録されている。 % git log --max-parents=0 commit e83c5163316f89bfbde7d9ab23ca2e25604af290 Author: Linus Torvalds <torvalds ppc970.osdl.org> Date: Thu Apr 7 15:13:13 2005 -0700 Initial revision of "git", the information manager from hell # --max-parents=0 は親のないコミット、つまりルートコミットを探す方法だ。 # もち

