Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
GitリポジトリをEgit(Eclipse Git)からGitHubに最初にプッシュしようとしています。残念ながら、次のエラーが発生します。
error: refusing to create funny ref 'HEAD' remotely
ソースと宛先の両方の参照を「HEAD」に設定しました
このエラーメッセージはどういう意味ですか?
代わりに、ソース参照としてマスター(refs / heads / master)を選択することで、これを修正しました。次に、Egitは宛先参照もマスターに自動的に設定します。このコマンドはgitにマスターブランチを作成するように指示し、HEADを選択すると、HEADというブランチを作成しようとするか、現在の(存在しない)リモートHEADにプッシュしようとします。
Sourcerefリストから"master[branch]"アイテムを選択すると、Sourcerefフィールドに"refs / heads/master"が挿入されます。
前:
後: