# studydemo **Repository Path**: why0406/studydemo ## Basic Information - **Project Name**: studydemo - **Description**: 所有学习的 示例代码 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-15 - **Last Updated**: 2025-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # whystudy #### 介绍 所有学习的 示例代码 #### 软件架构 软件架构说明 简易的命令行入门教程: Git 全局设置: ``` git config --global user.name "why0406" git config --global user.email "hzzdream@163.com" ``` 创建 git 仓库: ``` mkdir whystudy cd whystudy git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/why0406/whystudy.git git push -u origin "master" ``` 已有仓库? ``` cd existing_git_repo git remote add origin https://gitee.com/why0406/whystudy.git git push -u origin "master" ```