- Verify existing configuration by using command: `git remote -v` - Set proper url using: `git remote set-url <remote name> <new-url>` ```bash $ git remote -v origin ssh://[email protected]:7999/test/project.git (fetch) origin ssh://[email protected]:7999/test/project.git (push) $ git remote set-url origin ssh://[email protected]:7999/test/project.git $ git remote -v origin ssh://[email protected]:7999/test/project.git (fetch) origin ssh://[email protected]:7999/test/project.git (push) ```