DataMan
DataMan

Reputation: 3475

Pycharm: How do you check what git repository you're connected to?

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

Answers (2)

str
str

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

Edwin Cubillos
Edwin Cubillos

Reputation: 128

You can see in the corner down

GIT:master

Also you can see the documentation for git in Pycharm

Upvotes: 0

Related Questions