Pycharm默认不支持连接BitBucket(默认支持Github),需要安装一个plugin.
- 打开Pycharm, FIle -> Settings -> Plugins
搜索框输入Bitbucket Linky选择安装,安装完成后会在Settings的最下面出现一个新的tab
- 在BitBucket上创建一个和你要提交的项目同名的reposistory。 Bitbucket会提示你一些可能需要到的操作,对于我们而已,是提交一个现有的项目到bitbucket,所以我们使用如下
cd existing-project git init git add --all git commit -m "Initial Commit" git remote add origin https://ZER8SZH@sourcecode.socialcoding.bosch.com/scm/~zer8szh/rabbitmqdemo.git git push -u origin master
在你的项目下面按照上如命令执行, 你的本地项目就和bitbucket联系了起来,以后就可以在pycharm里面做commit, push等的一些列操作。