修改README文件,增加项目简介。

This commit is contained in:
wangtao 2020-07-18 16:59:37 +08:00
parent 9e22c3559c
commit 9cae5b4488
1 changed files with 4 additions and 18 deletions

View File

@ -1,20 +1,6 @@
#### 从命令行创建一个新的仓库 #### 项目简介
本项目用于《软件工程》课程的协同开发平台学习为学生学习使用Pull-Request开发模式、掌握基于任务的团队协作管理等提供一个案例。
```bash 本项目采用Python语言实现了一个最简单的Hello World功能。
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin http://gitea.trustie.net/wangtao/SoftwareEngineeringCase.git
git push -u origin master
```
#### 从命令行推送已经创建的仓库
```bash
git remote add origin http://gitea.trustie.net/wangtao/SoftwareEngineeringCase.git
git push -u origin master
```
学习《软件工程》课程的同学在进行相关实践任务时需要按照要求发布团队协同开发任务Fork本项目进行代码开发并提交Pull-Request。通过该联系掌握基于Pull-Request模式的协同开发。