最近、octopress ブログ プラットフォームに出会い、インストール手順に従いました。githubページを使用してgithubでホストしています。リポジトリを作成し、最初のコミットに成功しました。私の問題は、別のコミットをしようとしたときに発生し、これが私が受け取ったメッセージです:
Immanuels-MacBook-Pro:octopress manuweg$ git add .
Immanuels-MacBook-Pro:octopress manuweg$ git commit -m "Changed origin url"
[source e0fff54] Changed origin url
1 files changed, 1 insertions(+), 1 deletions(-)
Immanuels-MacBook-Pro:octopress manuweg$ git push origin source
ERROR: Repository invalid.
fatal: The remote end hung up unexpectedly
これは私の .git/config ファイルの設定です
[remote "origin"]
url = git@github.com:manuweg/manuweg.github.com.git
fetch = +refs/heads/*:refs/remotes/origin/*
私がする時
git config --get-regexp '^(remote|branch)\.'
私は得る
remote.octopress.url git://github.com/imathis/octopress.git
remote.octopress.fetch +refs/heads/*:refs/remotes/octopress/*
branch.source.remote origin
branch.source.merge refs/heads/master
remote.origin.url git@github.com:manuweg/manuweg.github.com.git
emote.origin.fetch +refs/heads/*:refs/remotes/origin/*
ご覧のとおり、最後の行にスペルミスがあるようです
emote.origin.fetch +refs/heads/*:refs/remotes/origin/*
私が読むべきだと思います:
remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
リモートオリジン URL は正しく、最初のコミットで機能しました。このエラーが発生する理由はありますか?