リポジトリの .gitattributes に
*.json diff=json
とか書いておいて、 ~/.gitconfig あたりで
[diff "json"]
textconv = "perl -MJSON -0e \"print JSON->new->canonical->pretty->encode(decode_json(<>))\""
とでも書いておくと git diff で JSON がいい感じに比較できる。
Go to list of users who liked
More than 5 years have passed since last update.
リポジトリの .gitattributes に
*.json diff=json
とか書いておいて、 ~/.gitconfig あたりで
[diff "json"]
textconv = "perl -MJSON -0e \"print JSON->new->canonical->pretty->encode(decode_json(<>))\""
とでも書いておくと git diff で JSON がいい感じに比較できる。
Register as a new user and use Qiita more conveniently
Go to list of users who liked