1

これは私のコードです:

$ git clone https://github.com/Perrydu/jekyll-plumbious.git Perrydu.github.com
$ cd Perrydu.github.com
$ git remote set-url origin git@github.com:Perrydu/Perrydu.github.com.git
$ git push origin master

ターミナル:

Last login: Sat Oct  6 19:54:15 on ttys000
Dus-MacBook-Pro:~ Perry$ $ git clone https://github.com/Perrydu/jekyll-plumbious.git Perrydu.github.com
-bash: $: command not found
Dus-MacBook-Pro:~ Perry$ git clone https://github.com/Perrydu/jekyll-plumbious.git Perrydu.github.com
Cloning into Perrydu.github.com...
remote: Counting objects: 34, done.
remote: Compressing objects: 100% (26/26), done.
remote: Total 34 (delta 3), reused 30 (delta 3)
Unpacking objects: 100% (34/34), done.
Dus-MacBook-Pro:~ Perry$ cd Perrydu.github.com
Dus-MacBook-Pro:Perrydu.github.com Perry$ git remote set-url origin git@github.com:Perrydu/Perrydu.github.com.git
Dus-MacBook-Pro:Perrydu.github.com Perry$ git push origin master
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
Dus-MacBook-Pro:Perrydu.github.com Perry$

jekyll-plumbious.gitはjekyll-bootstrapのような私のプロジェクトです。

4

1 に答える 1

1

ここで説明する手順に従っていることを前提としています。

GitHubアカウントからは、という名前のリポジトリを作成したことが問題であるように見えますperrydu.github.comが、のURLで参照しているリポジトリはoriginですPerrydu.github.com。GitHubリポジトリの名前では大文字と小文字が区別されるため、小文字の名前のリポジトリ(perrydu.github.com)のGitHub管理インターフェースに移動し、名前をに変更しPerrydu.github.comます。

次に、数分後、前に試したプッシュコマンドが機能するはずです。

于 2012-10-06T12:21:48.833 に答える