# HPULibrary-Task **Repository Path**: aibokalv/HPULibrary-Task ## Basic Information - **Project Name**: HPULibrary-Task - **Description**: 河南理工大学图书馆项目课后作业 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2018-04-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # HPULibrary-Task 河南理工大学图书馆项目课后作业 Git提交作业步骤: 1. 获取本 repo 读写权限:注册 Gitee 账号, 把用户名发送给老师; 2. 使用git 命令 clone班级作业公共项目: git clone https://gitee.com/reson/HPULibrary-Task.git 3. 进入本地项目文件夹: cd HPULibrary-Task 4. 在作业文件夹下新建自己名字的文件夹,添加上作业文件,开始写代码; 5. 配置git用户名: git config --global user.name 你的名字 6. 配置邮箱: git config --global user.email 你的邮箱 7. 配置git保存用户名密码,避免每次都提示输入密码: git config --global credential.helper store 8. 作业完成并且配置完成后即可提交到远程代码库: git add . git commit –m 'xx第一课作业' git push