我正在尝试设置 git,我从所有新鲜事物开始,并且我已经按照https://help.github.com/articles/create-a-repo中的所有步骤进行操作(除了创建自述文件,我在我的源代码项目文件夹中做了 git init 并做了 'git add *.*') 但是当我尝试添加 roigin 时会发生什么:
E:\eclypse\workspace [master]> git remote add origin https://github.com/my-repo/android-projects.git
fatal: remote origin already exists.
E:\eclypse\workspace [master +0 ~7 -0]> git remote -v
origin
upstream
E:\eclypse\workspace [master +0 ~7 -0]> git remote rm origin
error: Could not remove config section 'remote.origin'
我知道遥控器不存在,这是我的配置文件:
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
这是怎么回事?注意:我知道我可以使用除“起源”之外的其他名称,但这里有问题,我想弄清楚是什么。我确实尝试过使用不同的原产地名称,但后来我遇到了问题。
更新,这是我的 .gitconfig 文件的内容
[user]
name = Siavash Bonakdar
email = clumsygenius@gmail.com