Changes between Initial Version and Version 1 of pm/DVCS
- Timestamp:
- 2010/12/16 18:19:02 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pm/DVCS
v1 v1 1 = gitの文字化け = 2 gitで日本語したファイル名は文字化けする。 3 {{{ 4 $ git log --summary 5 ... 6 create mode 100644 "\343\203\206....txt" 7 }}} 8 下記のように設定すると文字化けしなくなる。 9 {{{ 10 $ git config --boot core.quotepath false 11 $ git log --summary 12 ... 13 create mode 100644 テスト.txt 14 }}} 15 16 = mercurialの文字化け = 17 Mercurialで日本語のファイル名を扱うと、LinuxとWindowsで正しく共有できない。今のところ解決策は、Windows上ではcygwinのmercurialをutf-8環境で使えば解決できる。 18 {{{ 19 $ LANG=ja_JP.utf-8 20 $ hg .... 21 }}}