Pycharm - how can I direct a local project to a remote organization repository?

I can click on my personal github account, but I'm trying to click on the organization repository. How to configure Pycharm to use a repo organization instead of a personal one? Thank.

+4
source share
2 answers

It does not seem to work, I had the same problem.

That was my way:

  • Create a new github organization repository and name it as your local project
  • Open PyCharm and check the organization project in a directory different from your PyCharm project project (if there is a local project with the same name)
  • PyCharm
  • PyCharm .idea( IDE PyCharm) .gitignore
  • , !
  • ( )

, git - .

+3

.

  • PyCharm
  • , .
  • : git remote add origin https://github.com/<organization>/<project>.git
  • PyChram : "VCS" → 'git' → 'push'
+1

Source: https://habr.com/ru/post/1546222/


All Articles