# Sentry_Chassis **Repository Path**: Konodoki/sentry_-chassis ## Basic Information - **Project Name**: Sentry_Chassis - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-06 - **Last Updated**: 2024-03-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # JUSTFW_KEIL_DEMO ### clone项目 由于本项目包含子模块(justfw),直接克隆下来的子模块目录里面是空的。 有两种方法解决: ##### 方法一 如果项目已经克隆到了本地,执行下面的步骤: 初始化本地子模块配置文件 `git submodule init` 更新项目,抓取子模块内容。 `git submodule update` ##### 方法二 另外一种更简单的方法,就是在执行 git clone 时加上 --recursive 参数。它会自动初始化并更新每一个子模块。例如: `git clone --recursive https://gitee.com/justrm/justfw_-clion_-demo.git` ### 更新子模块 进入`justfw`目录 ```c git branch -d master git branch master origin/master git pull origin master ``` 然后返回项目目录 ```c git add . git commit -m ":arrow_up:update repositorty@提交编号" git push ```