# fproblem **Repository Path**: ningqizhong/fproblem ## Basic Information - **Project Name**: fproblem - **Description**: A repository for competition - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-29 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 美赛协作平台 ## 目录说明 1. 2019-F exercise: 用于存放F题所用的代码,参考文献,论文,模型 2. 2020: 用于正式比赛 ## 使用方法 1. 如何将这个仓库放到本地(前提是您已经完成了git配置)? **在你想要存放文件的位置**打开终端(windows下的CMD或者powershell),输入如下命令: ``` git clone https://github.com/BOBBAIcloudwithpants/2020mcm-icm.git ``` 等待即可 2. 我添加了一些内容之后该如何上传到这个仓库? 在**2020mcm-icm**这个目录下打开终端(windows下的CMD/powershell), 输入如下命令: ``` git pull (一定要记着这条命令,避免版本冲突) ``` ``` git add . ``` ``` git commit -m "描述一下你做了什么修改" ``` ``` git push ``` 即可 3. 我已经clone了这个仓库,如果队友对线上的这个仓库做了什么更新的话,我该如何更新我的本地内容? 在**2020mcm-icm**这个目录下打开终端(windows下的CMD/powershell), 输入如下命令: ``` git pull ``` 即可