DanEdenのGithubワークフローガイドに従っています。を使用して、リモートからGithubに変更をプッシュしようとすると、問題が発生しましたgit push -u origin master
。すべてのファイルをステージに追加してコミットしました。上記のコマンドを使用すると、次のように返されます。
To git@github.com:tomoakley/5-lines.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com:tomoakley/5-lines.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
だから私git pull
はそれが示唆するように、これを返すことを試みて使用します:
git: 'pull' is not a git command. See 'git --help'.
Did you mean this?
shell
私は両方のウェブホストに連絡しましたが、Gitのインストールの問題ではなく、sshキーの問題(ssh -T git@github.com
通常の認証済みメッセージでreturnsを使用)であると言っているので、それはできません。また、現在調査中のGithubにも連絡しました。Githubのサポート担当者から、現在行っているSSHエージェント転送を使用するように言われました。
私のサーバーとgitに関するいくつかの詳細:
git --version
:gitバージョン1.7.12git --exec-path
:/ usr / local / libexec / git-core
答えてくれた人に感謝します:)