# git-study1 **Repository Path**: Ethan-Bai/git-study1 ## Basic Information - **Project Name**: git-study1 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-10-13 - **Last Updated**: 2025-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git 学习项目 这是一个用于学习 Git 的基础项目。 ## 初始化 Git 仓库 1. 打开终端(如 PowerShell 或 Git Bash)。 2. 导航到项目目录: ```bash cd h:\GItBash\git-study1 ``` 3. 初始化 Git 仓库: ```bash git init ``` ## 常用 Git 命令 - 查看当前状态: ```bash git status ``` - 添加文件到暂存区: ```bash git add <文件名> ``` - 提交更改: ```bash git commit -m "提交信息" ``` - 查看提交历史: ```bash git log ``` ## 练习文件 我已经为你创建了一个示例文件 `example.txt`,你可以用它来练习 Git 命令。