Я только что создал новый проект и добавил туда несколько файлов.
Затем я создал новый репозиторий GitHub (общедоступный).
Теперь я хочу перенести свой локальный проект Git на удаленный GitHub.
Итак, я делаю это:
git init
git add .
git commit -m "First commit"
Тогда:
git remote add https://github.com/user/project.git
git remote -v
# origin https://github.com/user/project (fetch)
# origin https://github.com/user/project (push)
Затем я пытаюсь выдвинуть элементы моего нового проекта:
git push
# fatal: The current branch master has no upstream branch.
# To push the current branch and set the remote as upstream, use
# git push --set-upstream origin master
Итак, я делаю, как сказано:
git push --set-upstream origin master
And get back:
# To https://github.com/user/project
# ! [rejected] master -> master (non-fast-forward)
# error: failed to push some refs to 'https://github.com/user/project'
# hint: Updates were rejected because the tip of your current branch is # behind
# hint: its remote counterpart. Integrate the remote changes (e.g.
# hint: 'git pull ...') before pushing again.
# hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Так что я продолжаю следовать их инструкциям:
git pull
And I get:
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
И продолжайте делать то, что пишут:
git pull origin master
And get back:
From https://github.com/user/project
* branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories
Мне удалось, чтобы это работало только с помощью
git clone https://github.com/user/project
Но я не думаю, что это правильный способ работы, не так ли?
Надеюсь на несколько советов.
Благодарю.