# git_learning_gitee **Repository Path**: big-problem/git_learning_gitee ## Basic Information - **Project Name**: git_learning_gitee - **Description**: 该仓库仅供团队内部使用,并非开源仓库 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 36 - **Created**: 2026-01-30 - **Last Updated**: 2026-09-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git 基础操作学习仓库 本仓库用于**组内成员学习 Git 的基础操作**,可在本地克隆、练习提交、分支、拉取等操作,熟悉常用 Git 命令与 Gitee 协作流程。 ## 适合谁 - 刚接触 Git / Gitee 的组员 - 需要巩固 `clone / add / commit / push / pull / branch` 等基础命令的成员 ## 推荐学习步骤 1. **克隆仓库** ```bash git clone <本仓库地址> cd git_learning ``` 2. **创建自己的分支**(建议用你的名字或昵称) ```bash git checkout -b your-name/learn ``` 3. **做一点小修改** - 例如在仓库里新建一个 `notes/你的名字.md`,写几句学习笔记或今日完成内容。 4. **提交并推送** ```bash git add . git commit -m "练习:第一次提交" git push -u origin your-name/learn ``` 5. **在 Gitee 上提合并请求(可选)** - 打开本仓库的 Gitee 页面,根据提示创建「合并请求」(MR),体验代码评审与合并流程。 ## 常用命令速查 | 操作 | 命令 | |----------------|------| | 查看状态 | `git status` | | 查看远程地址 | `git remote -v` | | 拉取最新代码 | `git pull origin master` | | 查看分支 | `git branch -a` | | 切换分支 | `git checkout <分支名>` | ## 注意事项 - 练习时请使用**自己的分支**,不要直接在 `master` 上乱改。 - 本仓库受 [LICENSE](LICENSE) 约束,仅限授权人员使用与学习。 有问题可以提 Issue 或找维护者。