1

次のコマンドを使用して、コードを github にプッシュしようとしました。

git remote add https://github.com/user/sample_app.git

git push origin master

そして、次のエラーが発生しました:

error: failed to push some refs to 'https://github.com/user/sample_app.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes before pushing again.  See the 'non-fast forward'
section of 'git push --help' for details.

エラーが入力したリモートにあるかどうかを確認するには:

git pull

次のエラーが発生しました:

error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed while accessing https://github.com/sub1010/sample_app.git/info/refs
fatal: HTTP request failed

コードを github にプッシュできないのはなぜですか?

4

2 に答える 2

0

httpリポジトリ自体ではなく、sshリポジトリを追加してみてください

git remote rm sample_app
git remote add git@github.com/user/sample_app.git
于 2012-06-05T19:38:14.867 に答える
0

Github には、リポジトリを設定し、確実に接続できるようにするための詳細な手順が記載されています。リンク: Github SetupおよびGithub Create A Repo

于 2012-06-05T21:29:30.537 に答える