2016-09-28 261 views
3

我在rasperry pi上使用Apache進行git repo。
我使用git + smart http:來自Linux客戶端,使用終端,一切正常。
例如,我可以使用以下命令克隆回購:Git + Eclipse:401未授權錯誤

git clone http://address:8080/git/repo_name 

的用戶名和密碼的插入後,它的工作原理。

但是,如果我想克隆使用Eclipse回購,這顯示了這個錯誤:

enter image description here

這就是Apache的錯誤日誌:

[Wed Sep 28 12:33:13.321726 2016] [negotiation:error] [pid 28020] [client 131.114.176.222:37524] AH00690: no acceptable variant: /usr/share/httpd/error/HTTP_UNAUTHORIZED.html.var 

這是我的apache配置(關於git和智能http):

<Directory "/usr/lib/git-core*"> 
    Options ExecCGI Indexes 
    Order allow,deny 
    Allow from all 
    Require all granted 
</Directory> 

<LocationMatch "^/.*/git-receive-pack$"> 
    Options +ExecCGI 
    AuthType Basic 
    AuthName "Git Login" 
    AuthUserFile /srv/git/.git-auth-file 
    Require valid-user 
</LocationMatch> 

<LocationMatch "^/.*/git-upload-pack$"> 
    Options +ExecCGI 
    AuthType Basic 
    AuthName "Git Login" 
    AuthUserFile /srv/git/.git-auth-file 
    Require valid-user 
</LocationMatch> 

SetEnv GIT_PROJECT_ROOT /srv/git 
SetEnv GIT_HTTP_EXPORT_ALL 
ScriptAlias /git/ /usr/lib/git-core/git-http-backend/ 

任何想法?

PS:我使用

  • 的Eclipse的Java EE IDE的Web開發。版本:霓虹發行(4.6.0)建立ID:20160613-1800

  • 例如:It 4.4.0.20160607

回答