赞
踩
持续集成(Continuous Integration,简称CI)
目的: 让产品可以快速迭代,同时还能保持高质量。
好处: 快速发现错误、防止分支大幅偏离主干、更快速的发布更新。
本篇工具: 源代码版本管理工具——Git、基于Git的代码仓库——Gitee(环境稳定)、Python编译器——PyCharm。
Gitee码云官网: https://gitee.com/
官网下载地址:https://git-scm.com/downloads
百度网盘资源:https://pan.baidu.com/s/17JEtyGVJEUBPSjqZfBsxTg?pwd=qs0g
提取码:qs0g
双击运行,按默认选项安装。
打开cmd,输入命令: git --version
,看到如下图git版本信息表示已安装成功。
打开cmd,分别输入以下语句:
git config --global user.email "email@example.com"
git config --global user.name "Your Name"
克隆代码:git clone url
查看版本库状态:git status
将修改提交至暂存区: git add 文件名
将修改提交至Git库: git commit -m "提示消息"
拉取远程仓库: git pull
推送远程仓库: git push
文件夹➝鼠标右击➝选择Git Bash Heere
(1)git clone 仓库地址
(2)新建hello.py文件夹,上传仓库
File➝Settings➝Plugins➝下载Gitee:
File➝Settings➝Version Control➝Git➝查看路径已存在:
VCS➝Checkout from Version Control➝Git:
填写复制的项目地址➝点击Clone:
add文件:
Version Control➝Default➝右键击文件➝Commit
项目➝Git➝Repository➝Push:
成功:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。