我已经分叉了一个存储库,在这之后,尝试克隆它
$ git clone https://github.com/dax/newly_cloned_project.git
克隆成功:
Cloning into '[newly_cloned_project]'...
remote: Counting objects: 180, done.
remote: Compressing objects: 100% (143/143), done.
remote: Total 180 (delta 57), reused 144 (delta 21)
Receiving objects: 100% (180/180), 206.54 KiB | 268 KiB/s, done.
Resolving deltas: 100% (57/57), done.
但是当将目录更改为newly_cloned_project
时,我对此表示欢迎:
You are using '.rvmrc', it requires trusting, it is slower and it is not compatible with other ruby managers,
you can switch to '.ruby-version' using 'rvm rvmrc to [.]ruby-version'
or ignore this warning with 'rvm rvmrc warning ignore /Users/charliekim/programming/developer application tasks/connect_four/.rvmrc',
'.rvmrc' will continue to be the default project file in RVM 1 and RVM 2,
to ignore the warning for all files run 'rvm rvmrc warning ignore all.rvmrcs'.
我正在为其他项目使用.rvmrc
文件 - 但这是新创建的并且没有这样的文件 - 经过仔细检查,结果发现我的newly_cloned_project
目录中有相当多的文件 - 包括.rspec
文件和随附的spec
目录...
我已经环顾了SO和谷歌,但是没有看到任何对此的引用 - 我已经三次检查了我的克隆过程,所以那里没问题(我可以说出来?)真的不确定发生了什么!
答案 0 :(得分:0)
愚蠢的错误 - 如果其他人遇到这样的问题,请务必检查您是否未对用户级gitconfig
文件(在unix系统上的~/.gitconfig
找到)进行不必要的更改。
我在此文件中为特定存储库添加了一个遥控器,这导致了问题。
~/.gitconfig
[remote "origin"]
url = [email_address]:dax/other_repo.git
fetch = +refs/heads/*:refs/remotes/origin/*
应该在.../other_repo/.git/config