当我尝试从存储库中提取更改时,我突然遇到此错误:
git pull
fatal: http://guthub.com/msalsas/BunchOfColors/info/refs not valid: is this a git repository?
似乎是一个错字(“guthub”),因为如果我这样做:
git pull http://github.com/msalsas/BunchOfColors
它有效。问题是我不知道是什么原因导致了这个问题,以及如何解决这个问题。 我以前一直在使用这个仓库并且没有任何问题地提取更改。
答案 0 :(得分:3)
这很可能是您远程配置中的拼写错误。假设它被称为origin
(默认值),您可以使用以下命令修复它:
git remote set-url origin http://github.com/msalsas/BunchOfColors
或者通过编辑.git/config
中的违规行来手动修复。