簡単に言うと、私は過去数か月間Webアプリに取り組んできました。最近、新しいラップトップを入手して、リポジトリをgithubから新しいマシンに複製する必要がありました...しかし、アプリに変更をコミットgit push -u
してアプリのルートディレクトリで使用しようとすると、次のメッセージが表示されます。
To git@github.com:acc/etc.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'git@github.com:acc/etc.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 git@github.com:acc/etc.git master
と、プルが中止されたというメッセージが表示されます。
From github.com:acc/etc
* branch master -> FETCH_HEAD
error: Your local changes to the following files would be overwritten by merge:
config/routes.rb
test/fixtures/users.yml
Please, commit your changes or stash them before you can merge.
Aborting
を使用して変更をコミットしてから、再git commit -m 'fixing'
試行git pull
します。
ただし、今回は、実質的にすべてのファイルに「自動マージの競合」があるというメッセージが表示されました。
私はこの特定のリポジトリに完全に夢中になっていますか?gitはまだ少し新しいので、どうしたらよいかわかりません。