Pycharm与Git

安装Git

git官方下载

Git配置用户名邮箱

设置用户名

git config --global user.name "username"

设置邮箱

git config --global user.email [email protected]

查看用户名和邮箱

git config user.name

git config user.email

查看其他配置信息(git设置列表)

git config --list

pycharm下载插件

Pycharm项目上传至Gitee/Github详细步骤
Pycharm项目上传至Gitee/Github详细步骤
目的:减少记commit和push的命令,进行傻瓜式项目部署。


项目Gitee上传(Github同)

Pycharm项目上传至Gitee/Github详细步骤
Pycharm项目上传至Gitee/Github详细步骤
Pycharm项目上传至Gitee/Github详细步骤
Pycharm项目上传至Gitee/Github详细步骤

此时工程上传到Gitee,结束!

相关文章: