.gitconfig文件中git remote origin变量的目的是什么

时间:2015-06-19 15:36:17

标签: git

我在.gitconfig文件中有以下内容:

[remote "origin"]
   url = https://github.com/eldur/jwbf

现在我做的时候:

git clone https://github.com/google/skicka.git

git将https://github.com/eldur/jwbf项目克隆到skicka文件夹。这是正常的吗?

1 个答案:

答案 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匹配。