# rust_learn_projects **Repository Path**: rust-learning/rust_learn_projects ## Basic Information - **Project Name**: rust_learn_projects - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-07 - **Last Updated**: 2025-08-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Git 全局设置: ```shell git config --global user.name "Gemiman.2#" git config --global user.email "913573586@qq.com" ``` # 创建 git 仓库: ```shell mkdir rust_learn_projects cd rust_learn_projects git init touch README.md git add README.md git commit -m "first commit" git remote add origin git@gitee.com:rust-learning/rust_learn_projects.git git push -u origin "master" ```