Я новичок в github, поэтому для тестирования я изменил свой файл .gitconfig (добавив несколько полезных псевдонимов и т. Д. c.) И поместил его в мой репозиторий "Config Files" на github.
У меня 2 компьютера, рабочий стол и ноутбук. Когда я изменяю локальный файл на рабочем столе, фиксирую и pu sh в удаленном хранилище, он работает нормально.
Однако, когда я пытаюсь сделать то же самое с ноутбука, я получаю эту ошибку.
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://github.com/User/Config-Files.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Дополнительно я получаю эту ошибку, если я пытаюсь сначала вытащить, как показано в сообщении:
$ git pull origin master
remote: Enumerating objects: 6, done.
remote: Counting objects: 100% (6/6), done.
remote: Compressing objects: 100% (1/1), done.
remote: Total 4 (delta 2), reused 4 (delta 2), pack-reused 0
Unpacking objects: 100% (4/4), 355 bytes | 8.00 KiB/s, done.
From https://github.com/User/Config-Files
* branch master -> FETCH_HEAD
627ab06..b327e2b master -> origin/master
fatal: refusing to merge unrelated histories
Удаленный репозиторий имеет только файл .gitconfig, тот же файл, который я пытаюсь вытащить sh с ноутбука, так почему я получаю эту ошибку?