2011-03-14 10 views
7

me encontré git remote add origin [email protected]:meltzerj/dreamstill.git que estaba bien, pero cuando corro git push origin master me sale el error:Github no trabajar

ERROR: meltzerj/dreamstill.git doesn't exist. Did you enter it correctly? 
fatal: The remote end hung up unexpectedly 

Sin embargo, el repositorio existe: https://github.com/meltzerj/Dreamstill

que hay de nuevo?

Aquí está el contenido de .git/config:

[core] 
repositoryformatversion = 0 
filemode = true 
bare = false 
logallrefupdates = true 
ignorecase = true 
[remote "origin"] 
url = [email protected]:meltzerj/dreamstill.git 
fetch = +refs/heads/*:refs/remotes/origin/* 
+0

¿Puede pegar el contenido de su configuración de git? está en appdir/.git/config – corroded

+0

yup, posted ...... –

+0

el comando "git remote add" solo agrega el repositorio remoto a sus repos disponibles, no valida que exista. La capital D es el problema. – Brandon

Respuesta

14

su repositorio tiene una D mayúscula en "Dreamstill". Pruebe:

git remote rm origin 
git remote add origin [email protected]:meltzerj/Dreamstill.git 
+0

gracias !!!!!!!!! –