Skip to content

Instantly share code, notes, and snippets.

@k-tsj
Created December 11, 2011 09:06
Show Gist options
  • Save k-tsj/1459496 to your computer and use it in GitHub Desktop.
Save k-tsj/1459496 to your computer and use it in GitHub Desktop.
git log with ruby-trunk-changes(http://d.hatena.ne.jp/nagachika/)
# 1. Add following lines to .git/config.
# 2. Run "git fetch k-tsj".
# 3. Run "git log".
[core]
notesRef = refs/notes/ruby-trunk-changes # or "git log --show-notes=ruby-trunk-changes"
[remote "k-tsj"]
fetch = +refs/notes/*:refs/notes/*
url = git://github.com/k-tsj/ruby.git
$ git log
commit d51ce05213188eea5cf4cbd6b9ea06c537726c64
Author: nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Sat Dec 10 08:12:28 2011 +0000
* test/ruby/test_econv.rb (TestEncodingConverter#test_default_external): drop stderr.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Notes (ruby-trunk-changes):
r33994 で修正したエンコーディングのテストのエンコーディング名の正規表現を少し修正 (^ → \A)。
また子プロセスを起動する時に標準エラー出力を捨てるようにしています。
commit a03a2d713c566f7ab909433667cf5760e45cd369
Author: nagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Fri Dec 9 13:50:18 2011 +0000
* ChangeLog: fix a typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Notes (ruby-trunk-changes):
ChangeLog の typo 修正。
commit 2eddb786ab577b6ae85245374bb10cab0bee788a
Author: nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
Date: Fri Dec 9 12:40:59 2011 +0000
* test/ruby/test_econv.rb (test_default_external): include iso-8859-16.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Notes (ruby-trunk-changes):
test_econv.rb でテストに利用するエンコーディング名が ISO-8859-\d[0-5] と末尾が
0-5 に限定されていたので、追加したエンコーディングも利用されるように任意の数を
受け付けるように変更しています。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment