0

githubのセットアップに関する指示に従いました。「gitpushoriginmaster」にたどり着くまではすべてうまくいきました。

それを入力すると、エラーメッセージが表示されます。

**To https://github.com/anc1revv/Dash-Website.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/anc1revv/Dash-Website.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again.  See the
'Note about fast-forwards' section of 'git push --help' for details.*

そこで、「git pull」と入力すると、エラーが発生しました。

warning: no common commits

remote: Counting objects: 3, done.

remote: Total 3 (delta 0), reused 0 (delta 0)

Unpacking objects: 100% (3/3), done.

From https://github.com/anc1revv/Dash-Website
 * [new branch]      master     -> origin/master

You asked me to pull without telling me which branch you
want to merge with, and 'branch.master.merge' in
your configuration file does not tell me, either. Please
specify which branch you want to use on the command line and
try again (e.g. 'git pull <repository> <refspec>').

See git-pull(1) for details.
If you often merge with the same branch, you may want to
use something like the following in your configuration file:
    [branch "master"]
    remote = <nickname>
    merge = <remote-ref>
    [remote "<nickname>"]
    url = <url>
    fetch = <refspec>
See git-config(1) for details."

助言がありますか??

4

1 に答える 1

2

うーん。git リポジトリとあなたのリポジトリは異なり、共通点はありません。それが失敗している理由です。最初にgithubのものをやり直し、そこからCLONEして、何が得られるかを確認することをお勧めします。

于 2012-06-07T20:26:15.700 に答える