清华大学出版社 王晓敏 邝孔武 编著 , 主讲:成都大学信息科学与工程学院 赵卫东副教授
-
实验平台地址:http://202.115.82.8:1522/ (必须先用校内VPN登录) 学生用学号登录,初始密码等于学号, 校内VPN: https://vpn.cdu.edu.cn/
-
老师做的基于GitHub的实验管理平台参考:https://github.com/zwdcdu/is_analysis/tree/master/test6
- 编辑器: Idea,JetBrains,VS Code等
- IDEA插件: markdown 和 plantuml
- 单独安装: git 和 graphviz
- 教材下载
- 绘制方法参考:PlantUML标准
- PlantUML GitHub 官方网站
- PlantUML服务: http://plantuml.com/zh/server
- plantuml在线编辑器: http://www.plantuml.com/plantuml
- Markdown格式参考: https://www.jianshu.com/p/b03a8d7b1719
- 老师的教学资源: https://github.com/zwdcdu/is_analysis
- Git简书 https://git-scm.com/book/zh/v2
- Git分支 https://git-scm.com/book/zh/v1/Git-%E5%88%86%E6%94%AF
- Github 简明教程-操作标签 https://www.cnblogs.com/tracylxy/p/6439089.html
- Git菜鸟教程 http://www.runoob.com/git/git-tutorial.html
- GitWindows客户端
- 版本控制样例参见:https://github.com/oracle/db-sample-schemas
- 文档编写工具 Sphinx 使用手册 https://of.gugud.com/t/topic/185 https://zh-sphinx-doc.readthedocs.io/en/latest/contents.html
- GitHub开发者接口V3
- 使用标准的"![](地址)"方式显示plantuml图片,地址格式是: http://www.plantuml.com/plantuml/proxy?cache=no&fmt=svg&src=https://zwdcdu.github.io/a.github.io/fig2.puml
- cache=no表示不缓存,列容易适应文件的变化
- fmt=svg表示以svg方式显示图形,这个很重要,否则汉字会显示为不同的字体。
- https://zwdcdu.github.io/a.github.io/fig2.puml表示plantuml源码,可以是任何地址,只要返回plantuml源代码即可。
git clone https://github.com/你的github用户名/test.git
clone操作应该只做一次,会下载项目资料库中的所有文件、分支和标签,并新建一个.git隐藏目录,使本机和远程仓库建立关联。 clone之后可以使用git pull下载修改文件。
cd test
ls
git config --global user.name "你的github用户名"
git config --global user.email 你的github邮箱
ls -a
vi a.c
git add *
git commit -m 'zhang 修改'
git push
git pull
cat a.c