我在.gitconfig
文件中有以下内容:
[remote "origin"]
url = https://github.com/eldur/jwbf
现在我做的时候:
git clone https://github.com/google/skicka.git
git将https://github.com/eldur/jwbf
项目克隆到skicka
文件夹。这是正常的吗?
答案 0 :(得分:1)
首先,remove any remote
entry from your global config file
git config --global --unset-all remote.origin
然后像往常一样克隆您的仓库(您的第二个克隆将无法获得第一个仓库!),并检查您的本地配置:
cd /path/to/local/second/cloned/repo
git config --local
您应该看到一个remote.origin值,它将与您刚刚克隆的repo匹配。