# dotcpp_practices
**Repository Path**: xoveewa/dotcpp_practices
## Basic Information
- **Project Name**: dotcpp_practices
- **Description**: 个人在dotcpp网站,蓝桥杯准备的刷题记录
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-11-29
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# dotcpp_practices
个人在dotcpp网站,蓝桥杯准备的刷题记录
# 第一次用git bash 不熟悉,记一下怎么用代码:
## 电脑与github账户链接
......
## 文件夹链接到git库
git config -- global user.name "//文件上传者用户名"
git config -- global user.email "//文件上传者邮箱"
git init
git add .
git commit -m "//文件注释"
git remote add origin https://...
git pull --rebase origin master
git push -u origin master