Did you install the Git man pages, as well as git itself? Here is what works for me on a MacBook:
% cd % curl -O http://www.kernel.org/pub/software/scm/git/git-1.6.0.2.tar.gz % tar xzvf git-1.6.0.2.tar.gz % cd git-1.6.0.2 % make configure % configure --prefix=/usr/local % make % sudo make install % curl -O http://www.kernel.org/pub/software/scm/git/git-manpages-1.6.0.2.tar.gz % sudo tar xv -C /usr/local/man -f git-manpages-1.6.0.2.tar.gz % export MANPATH="/usr/local/man:$MANPATH" Note that the "export MANPATH" should go into your .profile .bash_profile or whatever you have, in order to make it permanent. Paul On Sep 30, 2008, at 9:54 AM, Feng wrote: Hi, I'm a new for Git. When I ran "git branch --help" command, I got the following error. Could you tell me how I can fix it. ----------------------------------------------------------------------------------------------- [EMAIL PROTECTED] ~: git branch --help Cannot open the message catalog "man" for locale "ja_JP.UTF-8" (NLSPATH="<none>") No manual entry for git-branch ----------------------------------------------------------------------------------------------- Thanks, --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/git-users?hl=en -~----------~----~----~----~------~----~------~--~---
