# opensource **Repository Path**: yebohong02/opensource ## Basic Information - **Project Name**: opensource - **Description**: No description available - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 9 - **Created**: 2025-10-23 - **Last Updated**: 2025-11-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git 教学仓库 #### 介绍 这是一个用于 Git 版本控制工具教学的示例仓库。通过本仓库,您可以学习 Git 的基本概念、常用命令和团队协作流程。 #### 安装教程 1. **下载 Git** - Windows: 访问 [git-scm.com](https://git-scm.com/) 下载安装包 2. **配置用户信息** ```bash git config --global user.name "您的用户名" git config --global user.email "您的邮箱" ``` 3. **验证安装** ```bash git --version ``` #### 使用说明 1. **克隆仓库** ```bash git clone https://gitee.com/your-username/git-tutorial.git ``` 2. **基础工作流** ```bash git status # 查看状态 git add . # 添加所有文件 git commit -m "提交说明" # 提交更改 git push origin main # 推送到远程 ``` 3. **分支管理** ```bash git branch # 查看分支 git checkout -b new-branch # 创建并切换分支 git merge branch-name # 合并分支 ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request