У меня есть git
хранилище из проекта. Я удалил файл .git
.Теперь я создал новый репозиторий git и попытался вставить код в новый репозиторий.Для этого я использовал команду
- git init
- git add.
- git commit -m ""
- git remote add origin originhttps://github.com/xxxx/project-sp.git
- мастер git push -u origin
Для 5-го пункта получено сообщение об ошибке:
Разрешение для xxx /Проект-sp.git отказано в хххх.Неустранимый: невозможно получить доступ 'https://github.com/xxx/project-sp.git/': Запрошенный URL вернул ошибку: 403
Затем я удалил учетные данные git из диспетчера учетных данных и использовал команду git pull
Iполучил сообщение как
warning: no common commits
remote: Enumerating objects: 3, done.
remote: Counting objects: 100% (3/3), done.
remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (3/3), done.
From https://github.com/xxx/project-sp
* [new branch] master -> origin/master
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.Я очень новичок в этом мерзавце.Как решить эту проблему?
Обновление: при попытке использовать команду git push --set-upstream origin master
я получаю сообщение об ошибке
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https://github.com/xxx/project-sp.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.