# CloudComputingDemo **Repository Path**: shuaibinliu/cloud-computing-demo ## Basic Information - **Project Name**: CloudComputingDemo - **Description**: 云计算学习系统 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-14 - **Last Updated**: 2023-11-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## git 基础入门 ``` # clone 命令来克隆一个本地仓库 git clone https://gitee.com/shuaibinliu/cloud-computing-demo.git # 初始化自己本地git git config --global user.name "用户名" git config --global user.email "邮箱" # 修改前记得先同步远端代码 git pull origin master # 本地修改后的命令执行顺序 add -> commit -> push 具体命令为 【】中的内容是中文描述,命令里不加 git add fileName【修改的文件名字】 git commit -m "本次提交的修改简要描述" git push origin your_origin【你自己的分支】 # 出现冲突后协调解决冲突 ``` ## 该项目仅为云计算学习demo系统,node整体框架借鉴于 [Mr-L的node-express的架构层](https://gitee.com/ldq429/node-express.git)