dross
dross

Reputation: 1759

Remote Git server for Pycharm

Started developing Python using Pycharm and would like to set up a remote Git Server for wider team work. I already just set Bonobo up but can't seem to get Pycharm to work with it. Little experience in this area.

Is the right approach being attempted here ? Will Bonobo work with Pycharm ? Any better open source solution available to work with Pycharm ?

Upvotes: 0

Views: 2978

Answers (1)

Max
Max

Reputation: 1010

PyCharm offers great support and own tools for working with git!

Check out the official doc here: https://www.jetbrains.com/help/pycharm/2016.1/version-control-with-pycharm.html?origin=old_help

If you already have initialized a git repository in your project folder, PyCharm should automatically suggest enabling VCS (Version Control Support). Otherwise just do a git init.
Make sure to add the remote repository from your Bonobo-server via git remote add ...

Furthermore, set up a proper .gitignore file, for user-specific settings in PyCharm. Check out this example .gitginore: https://www.gitignore.io/api/pyc%2Cpycharm%2Cpython

Regarding your question whether Bonobo will work with PyCharm:
PyCharm doesn't care what service is running your remote git server.
I have no experience with Bonobo, but was using GitLab for various projects in different team sizes. It's great.

Upvotes: 1

Related Questions