# study **Repository Path**: xiugeng/study ## Basic Information - **Project Name**: study - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-04-24 - **Last Updated**: 2025-06-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 一、git配置 ### 1、git全局设置 ```git git config --global user.name "休耕" git config --global user.email "10003885+xiugeng@user.noreply.gitee.com" ``` ### 2、创建git仓库 ```git git init git add . git commit -m "first commit" git remote add origin https://gitee.com/xiugeng/study.git git push -u origin "master" ``` ### 3、已有仓库?难道是本地已经有study仓库的情况 ```git git remote add origin https://gitee.com/xiugeng/study.git git push -u origin "master" ``` ### 4、更新代码 ```git # 由于GIT 2.35.2版本更新了安全目录检查。如果目录所有权与当前用户不一致会报错 $ git config --global --add safe.directory . $ git add . $ git commit -m "2025-5-8 update" $ git push -u origin "master" ``` ## 二、项目模块配置 要配置国内源才能正常下载模块: ```bash https://pypi.tuna.tsinghua.edu.cn/simple/ ```