Tengo un repositorio moodle
en mi cuenta de Github que procedo forked
del repositorio oficial.
Luego lo cloné en mi máquina local. Funcionó bien. Creé varias ramas (debajo de la master
rama). Hice varias confirmaciones y funcionó bien.
No sé cómo obtengo el siguiente error cuando lo hago: git push origin master
fatal: 'origin' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
¿Cómo resuelvo el error sin afectar mi repositorio en Github?
Estoy usando Ubuntu 12.10
El contenido de mi .git/config
después de hacer cat $(git rev-parse --show-toplevel)/.git/config
da:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[branch "master"]
[branch "MOODLE_23_STABLE"]
[branch "MOODLE_24_STABLE"]
[remote "upstream"]
url = git://git.moodle.org/moodle.git
fetch = +refs/heads/*:refs/remotes/upstream/*