Reputation: 3475
The answer for this might be super obvious, but I can't seem to figure out how to check what the github url is for the project that I'm in. I want to make sure I'm connected to the correct remote repository.
Upvotes: 1
Views: 1458
Reputation: 45029
This is for IntelliJ but I assume it's the same for PyCharm.
In the menu, select VCS => Git => Remotes...
Or use the command line:
git remote show origin
Upvotes: 2
Reputation: 128
You can see in the corner down
Also you can see the documentation for git in Pycharm
Upvotes: 0