Here you can find a few guidelines for making the best use of Git
Change your project namespace
If during a reorganization process, your project changed namespace (for example, it was moved to a different group) you will need to update your git remote.
First, check your current remote:
git remote -v
If the path is different from what you need, update by running:
git remote set-url origin <new git address>
To get the new address, navigate to your project and click the Clone button. You can use the SSH or HTTP paths, depending on your needs.
Check if the origin was updated by running git remote -v
again.