42
45

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

git diff や git show で複数のエンコードのファイルを扱う

Last updated at Posted at 2016-02-02

Shift-JIS のファイルの差分を見たくても、コンソールがUTF-8なので毎回文字化けして読めない。

diffのハイライトも表示したかったし、ページャも使いたかったから git diff <file> | nkf -w | pygmentize -l diff | less -R とかしてたけど、いちいち打つのがめんどくさいので普通の git diff で表示できるように設定したかった。

前提条件

  • どのファイルが Shift-JIS のテキストファイルであるか指定できる
  • 検証したのは Mac OS X

.gitattributes

.gitattributes に色々記述することで、ファイルにgit上の属性値をつけることができる。

.gitattributes
*.txt diff=sjis

*.txt を扱うときには diff=sjis がセットされるようになるので、 git config 内のキーとして使える。

git config diff.<driver>.textconv

diff=<driver> 属性が設定されたファイルに対してdiffを実行する前にテキスト化するコマンドを指定する、という設定項目。

有名なところだと docxxlsx などをテキスト化して差分を見るなどがあるが、今回はこれを文字コード変換に使ってみる。

$ git config diff.sjis.textconv "iconv -f sjis"

こうしておけばShift-JISのファイルを一度 iconv コマンドで文字コード変換してからdiffを取るようになる。
属性のついていないファイルはいつもどおりのdiffになるので、 git show などで複数のファイルが表示される時も安心。

参考

Git - Gitの属性

42
45
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
42
45

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?