это мой репозиторий https://github.com/kiotie32/artbit-text.git, когда я
$ git push -u origin master
remote: Repository not found.
fatal: repository 'https://github.com/kiotie32/arbit-text.git/' not found
Я на Windows 10 машине. Я настроил s sh ключи для использования с этим ноутбуком. Я делаю ls и вижу
MINGW64 ~/.ssh
$ ls
kiotie32_rsa kiotie32_rsa.pub known_hosts
Я прочитал все ответы на в этой теме Я изменил пароль, хранящийся в windows Диспетчер учетных данных.
Я проверяю git remote -v | head -n1 | awk '{print $2}' | sed 's/.*\///' | sed 's/\.git//'
Я получаю следующий вывод arbit-text
Я изменил пароль, сохраненный в windows Диспетчер учетных данных, возможно, был сохранен старый пароль.
У меня не появляется всплывающее окно с запросом имени пользователя пароль. (ключ s sh был настроен, но я не уверен, что он работает в этой среде Windows 10. Ключ хранится в .s sh в git bash) Теперь я делаю
$ git remote add origin https://github.com/kiotie32/arbit-text.git
fatal: remote origin already exists.
тогда я делаю
$ git push -u origin master
error: src refspec master does not match any
error: failed to push some refs to 'https://github.com/kotie32/arbit-text.git'
Так что я не могу понять, почему возникает эта ошибка /
Сначала я попытался найти решение { ссылка } ответ, чтобы сделать
git commit -m "initial master"
, а затем я получил
$ git push origin master remote: Repository not found. fatal: repository 'github.com/kotie32/arbit-text.git' not found
затем я попытался, как в комментариях
git add -all
, а затем я сделал
$ git push origin master remote: Repository not found. fatal: repository 'https://github.com/kotie32/arbit-text.git/' not found
затем из другого ответа { ссылка } Я пытался
$ git show-ref
79d1730e9aa78f68a11ec4de6a0e8d6b66f17afb refs/heads/master
, затем я сделал
$ git push origin HEAD:master
remote: Repository not found.
fatal: repository 'https://github.com/kotie32/arbit-text.git/' not found
Я заметил в последней ошибке выше url орфография kotie32 не так, это должно быть kiotie32
checkd файл конфигурации внутри папки. git, и там я вижу следующее
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = https://github.com/kiotie32/arbit-text.git
fetch = +refs/heads/*:refs/remotes/origin/*
, поэтому здесь url-адрес корректен, орфография kiotie32
, которая правильно.
хорошо, теперь я заметил, что сформировалось 2 каталога. project folder/.git/.git
и файл конфигурации <project folder>/.git
имеет неверный URL, а внутренний, т.е. <project folder>/.git/.git
имеет правильный URL.
Я изменил файл конфигурации <project folder>/.git
и удалил подкаталог .git/.git
новый файл конфигурации имеет
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = https://github.com/kiotie32/arbit-text.git
fetch = +refs/heads/*:refs/remotes/origin/*
, а затем я снова делаю
$ git push -u origin master
remote: Repository not found.
fatal: repository 'https://github.com/kiotie32/arbit-text.git/' not found
, затем я сделал
$ git remote set-url origin https://github.com/kiotie32/artbit-text.git
, теперь я могу сделать pu sh, чтобы освоить ветку.