0

リポジトリをフォークし、その後、クローンを作成しようとしました

$ 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 と Google を見回しましたが、これについての言及は見当たりませんでした。クローン作成プロセスを 3 回確認したので、そこには問題はありません (わかりますか?) 何が起こっているのか本当にわかりません!

4

1 に答える 1

0

ばかげた間違い - 他の誰かがこのような問題を抱えている場合は、ユーザー レベルgitconfigファイル ( ~/.gitconfigUNIX システムでは にあります) に不要な変更を加えていないことを確認してください。

このファイルに特定のリポジトリのリモートを追加したため、問題が発生していました。

~/.gitconfig

[remote "origin"]
    url = [email_address]:dax/other_repo.git
    fetch = +refs/heads/*:refs/remotes/origin/*

にある必要があります.../other_repo/.git/config

于 2013-11-13T10:32:02.243 に答える