git push generated error when the repository had been moved inside a group
Closed
git push generated error when the repository had been moved inside a group
Created by: sumitag
I created a repository, set up the remote on git. I then moved the repository into a group from the admin page. While pushing from git I got "remote end hung up unexpectedly" error.
I would expect this to be handled more gracefully with a error stating remote doesn't exist.
Created by: animedbz16
Did you update the git remote origin in your local repository?
To list remote repos: git remote -v
If this doesn't match the correct group then you are attempting to push the repo to the old path, which won't exist.
This would need to be updated.
By Administrator on 2013-10-30T21:47:32 (imported from GitLab project)
Created by: mmonge
This is not a GitLab Issue, it's how Git works on GitHub, GitLab, Bitbucket... you can not expect that it shows you a message about you moving repos to another group. When you do the move action on GitLab it saids you about fixing the remotes.
By Administrator on 2013-11-05T19:33:03 (imported from GitLab project)