pycharm 上传项目到github

参考文章:https://blog.csdn.net/m0_37306360/article/details/79322947

记录将本地Pycharm项目上传到Github的整个过程。

准备工作

首先得注册github账号,这里不多说
然后,安装git (我的版本git version 2.15.0.windows.1)
PyCharm版本2017.2.3

上传操作

第一步,点击PyCharm的File -> Setting,找到github,输入用户名和密码,点击test,看是否能连的上:

这里写图片描述

第二步,设置Git,把路径设置为本机git安装路径(git.exe的路径):

这里写图片描述

第三步,点击VCS下的import into Version Control,找到Share Project on GitHub:

这里写图片描述

然后会出现下面的页面,点击share即可。


这里写图片描述

可以选择项目中要上传的文件:

这里写图片描述

报错解决方案:

https://blog.csdn.net/stimgo/article/details/52161888

image.png

解决的办法:

cd 到git安装目录

运行,换成自己对应的github邮箱和用户名

git config --global user.email "[email protected]"  
git config --global user.name "Your Name"

觉得文章有用,请用支付宝扫描,领取一下红包!打赏一下

支付宝红包码

你可能感兴趣的:(pycharm 上传项目到github)