[git-users] Re: How to fix it? I can't get help messages of git.

2008-10-01 Thread Feng

Now, I had updated my git to the newest version(1.6.0.2), and
installed git manpage based on your comment.
Thanks a lot. There is no problem now.

On 10月1日, 上午12时00分, Paul Beckingham [EMAIL PROTECTED] wrote:
 Did you install the Git man pages, as well as git itself?  Here is  
 what works for me on a MacBook:

% cd
% curl -Ohttp://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 
 -Ohttp://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 git-users@googlegroups.com
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
-~--~~~~--~~--~--~---



[git-users] Re: How can I clean cache git

2008-10-01 Thread Sergey Kruk

 I'm sorry
 I get error fatal: Failed to resolve 'text.txt' as a valid ref. when
 I do like this : git reset --hard F text.txt

To reset changes made to one file use git-checkout
git checkout text.txt
should undo changes made to text.txt since the last commit

--~--~-~--~~~---~--~~
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 git-users@googlegroups.com
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
-~--~~~~--~~--~--~---



[git-users] Re: How can I clean cache git

2008-10-01 Thread Lemur

Ok! You of both has helped to me. Notable it's
TomSW

On 1 окт, 19:15, Sergey Kruk [EMAIL PROTECTED] wrote:
  I'm sorry
  I get error fatal: Failed to resolve 'text.txt' as a valid ref. when
  I do like this : git reset --hard F text.txt

 To reset changes made to one file use git-checkout
 git checkout text.txt
 should undo changes made to text.txt since the last commit
--~--~-~--~~~---~--~~
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 git-users@googlegroups.com
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
-~--~~~~--~~--~--~---