【发布时间】:2015-06-06 01:24:01
【问题描述】:
您好,我有以下 git 私人仓库
git remote -v
origin https://github.com/sescobb27/festinare_api.git (fetch)
origin https://github.com/sescobb27/festinare_api.git (push)
ssh git@github.com:sescobb27/festinare_api.git (fetch)
ssh git@github.com:sescobb27/festinare_api.git (push)
但是当我尝试运行 git push origin master 时,它会说
remote: Repository not found.
fatal: repository 'https://github.com/sescobb27/festinare_api.git/' not found
但是如果我改为运行 git push ssh master 它可以工作,我不知道发生了什么或为什么会发生这种情况;奇怪的是他们上周还在工作。
我在 xubuntu xfce 14.04LTS
更新
git config --local -l
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
credential.helper=store
remote.origin.url=https://github.com/sescobb27/festinare_api.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
remote.ssh.url=git@github.com:sescobb27/festinare_api.git
remote.ssh.fetch=+refs/heads/*:refs/remotes/ssh/*
【问题讨论】: