# 爬虫基础1 **Repository Path**: troting/my-pytest ## Basic Information - **Project Name**: 爬虫基础1 - **Description**: 爬虫基础练习项目集1 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-02 - **Last Updated**: 2025-10-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README git config --global user.name 'zhaol' git config --global user.email 'zhaolei46@outlook.com' ---初始化 git init ---将当前目录下的所有文件添加到“暂存区”(Staging Area) ---如果你想添加特定文件,可以把 . 换成文件名,如 `git add readme.md` git add . # 将暂存区的文件提交到本地仓库,并附上提交信息说明这次更改 git commit -m "Initial commit: first version of my project"