Changes between Initial Version and Version 1 of pm/DVCS


Ignore:
Timestamp:
2010/12/16 18:19:02 (14 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pm/DVCS

    v1 v1  
     1= gitの文字化け = 
     2gitで日本語したファイル名は文字化けする。 
     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の文字化け = 
     17Mercurialで日本語のファイル名を扱うと、LinuxとWindowsで正しく共有できない。今のところ解決策は、Windows上ではcygwinのmercurialをutf-8環境で使えば解決できる。 
     18{{{ 
     19$ LANG=ja_JP.utf-8 
     20$ hg .... 
     21}}}