標籤:fat not found bin inter 後端 highlight usr 倉庫 could not
當配置完個人中心的ssh公開金鑰的時候,在用戶端拉取代碼的時候,提示如下錯誤:
Cloning into ‘comix-b2m‘...Gogs: Internal errorfatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.
一度認為是ssh公開金鑰配置問題
後端serv日誌報錯如下;
exec: "git-upload-pack": executable file not found in $PATH
原來是gogs預設值在/bin下面找二進位命令,果斷做了軟連結,
sudo ln -s /usr/local/bin/git-upload-pack /bin/git-upload-pack
類似這個你可能還會遇到下面相關的,可以參考解決:(下面前半部分路徑參考你實際的git命令路徑)
ln -s /usr/local/git/bin/git-cvsserver /bin/git-cvsserverln -s /usr/local/git/bin/gitk /bin/gitkln -s /usr/local/git/bin/git-receive-pack /bin/git-receive-packln -s /usr/local/git/bin/git-shell /bin/git-shellln -s /usr/local/git/bin/git-upload-archive /bin/git-upload-archive
添加完畢後,在用戶端可以正常down項目了,一切正常。
Cloning into ‘comix-b2m‘...remote: Counting objects: 4178, done.remote: Compressing objects: 100% (2939/2939), done.remote: Total 4178 (delta 2328), reused 2332 (delta 1045)Receiving objects: 100% (4178/4178), 347.71 MiB | 1.08 MiB/s, done.Resolving deltas: 100% (2328/2328), done.Checking out files: 100% (1487/1487), done.
gogs倉庫管理軟體 exec: "git-upload-pack": executable file not found in $PATH