# git **Repository Path**: weileiu/test1 ## Basic Information - **Project Name**: git - **Description**: git 简单实用教程, - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-06 - **Last Updated**: 2025-01-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 创建 git 仓库: mkdir test1 cd test1 git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/*/test1.git git push -u origin "master"