git
功能
git是代码版本管理工具,是专业程序员必备的工具,也是项目管理和团队协作的利器。
安装
- git for windows https://git-for-windows.github.io/
git 基础教程
- git:猴子都能入门的教程 http://backlogtool.com/git-guide/cn/intro/intro1_1.html
- Git 使用规范流程 http://www.ruanyifeng.com/blog/2015/08/git-use-process.html
cheatsheet
基本要求
- 每周进行个人项目开发时,应及时将代码通过git提交到github或gitee
git add -A
git commit -a -m "your comment"
git push
- 当你确认代码无误,可将本次提交进行标记
# 查找相应的commmit id
git log
# v1、v2、v16指提交作业时的周数,譬如第一周则为v1,以此类推
git tag v1 k234234
参考 https://blog.csdn.net/qq_32452623/article/details/73949509 , 项目成绩将综合平时进度和提交情况进行综合评分