# git_study **Repository Path**: yangfan0502/git_study ## Basic Information - **Project Name**: git_study - **Description**: git学习笔记 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-11-21 - **Last Updated**: 2025-08-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: 学习笔记 ## README # git_study #### 介绍 git学习笔记 #### 使用说明 1. 本地文件夹初始化仓库 git init 2. 链接远端仓库 git remote add origin https://gitee.com/yangfan0502/git_study.git 3. 同步远端内容 git pull origin master 4. 提交本地修改 git add . 5. 上传本地修改 git push origin master