# git-23jy **Repository Path**: pear2007/git-23jy ## Basic Information - **Project Name**: git-23jy - **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-09-30 - **Last Updated**: 2025-09-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ​ git 教程 创建本地仓库 ```bash git init ``` 在当前文件夹创建一个文件 如 readme.md 把当前文件夹的所有文件都加入到 版本控制仓库 ```bash git add . ``` ```bash # 提交到本地仓库 git commit -m "提交说明:描述本次修改的内容" # 查看提交历史 git log git log --oneline # 简洁显示 ``` 添加远程仓库 ``` git remote add origin https://gitee.com/pear2007/git-23jy.git ``` 提交到远程仓库 ``` git push -u origin "master" ```