web-dev-qa-db-fra.com

ERREUR: Impossible de pousser quelques références à 'https://github.com/

ceci est mon référentiel https://github.com/kiotie32/artbit-text.git quand je le fais

$ git Push -u Origin master
remote: Repository not found.
fatal: repository 'https://github.com/kiotie32/arbit-text.git/' not found

Je suis sur une machine Windows 10. J'avais configuré les touches SSH à utiliser avec cet ordinateur portable. Je fais un LS et je peux voir

 MINGW64 ~/.ssh
$ ls
kiotie32_rsa  kiotie32_rsa.pub  known_hosts

J'ai lu toutes les réponses données sur ce fil J'ai changé le mot de passe stocké dans Windows Credential Manager.

Je vérifie git remote -v | head -n1 | awk '{print $2}' | sed 's/.*\///' | sed 's/\.git//' Je reçois la sortie suivante arbit-text

J'ai changé le mot de passe stocké dans Windows Credentials Manager un ancien mot de passe a été stocké.

Je n'ai pas de pop up demandant un mot de passe nom d'utilisateur. (Une clé SSH a été configurée mais pas sûre si cela fonctionne sur cet environnement Windows 10, j'ai la clé stockée dans .ssh à git bash) maintenant je fais

$ git remote add Origin https://github.com/kiotie32/arbit-text.git
fatal: remote Origin already exists.

alors je fais

$ 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'

Donc je ne suis pas capable de comprendre pourquoi cette erreur arrive /

J'ai essayé la solution ici https://stackoverflow.com/a/7572252/13012032 Première réponse à faire
[.____] git commit -m "initial master"
[.____] et puis j'ai eu
[.____] $ git Push Origin master remote: Repository not found. fatal: repository 'github.com/kotie32/arbit-text.git' not found
[.____] alors j'ai essayé comme dans les commentaires
[.____] git add -all et puis j'ai fait
[.____] $ git Push Origin master remote: Repository not found. fatal: repository 'https://github.com/kotie32/arbit-text.git/' not found

puis d'une autre réponse https://stackoverflow.com/a/4183856/13012032 J'ai essayé
[.____] $ git show-ref 79d1730e9aa78f68a11ec4de6a0e8d6b66f17afb refs/heads/master
[.____] alors j'ai fait
[.____] $ git Push Origin HEAD:master remote: Repository not found. fatal: repository 'https://github.com/kotie32/arbit-text.git/' not found

Je remarque dans la dernière erreur sur l'URL ci-dessus L'orthographe KOtie32 est fausse, il devrait être kiotie32 Checkd le fichier de configuration dans le dossier .git et là, je vois ce qui suit

[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/*

alors, l'URL ici est correcte l'orthographe est kiotie32 qui est correct.

ok, j'ai maintenant remarqué que 2 répertoires se sont formés. project folder/.git/.git et fichier de configuration de <project folder>/.git a une mauvaise URL et le intérieur I.E. <project folder>/.git/.git a une URL correcte.

J'ai changé le fichier de configuration de <project folder>/.git et subdirectory supprimé .git/.git Le nouveau fichier de configuration a

[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/*

et puis je fais de nouveau

$ git Push -u Origin master
remote: Repository not found.
fatal: repository 'https://github.com/kiotie32/arbit-text.git/' not found

alors j'ai fait

$ git remote set-url Origin https://github.com/kiotie32/artbit-text.git

ensuite maintenant, je suis capable de pousser à la branche principale.

5
koeradoera

Une dernière chose (juste au cas où cela pourrait aider quelqu'un à l'avenir): vous devez vous engager à pousser.

1
LuisE