first commit

This commit is contained in:
liyp
2026-08-25 21:50:58 -04:00
commit 6136624227
5 changed files with 52 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
# 忽略 Projects 文件夹下的所有内容
Projects/*
# 但不忽略 Projects/Tools 文件夹
!Projects/Tools
# 不忽略 Projects/Tools 文件夹下的所有内容
!Projects/Tools/**
+20
View File
@@ -0,0 +1,20 @@
[submodule "Bsp"]
path = Bsp
url = https://git.linuxacme.com/iorebuild/VoiletBspStm32F10x.git
branch = main
[submodule "System"]
path = System
url = https://git.linuxacme.com/iorebuild/Stm32F10xSystem.git
branch = main
[submodule "StdLib"]
path = StdLib
url = https://git.linuxacme.com/iorebuild/Stm32F10xStdLib.git
branch = main
[submodule "ThirdLib/LetterShell"]
path = ThirdLib/LetterShell
url = https://git.linuxacme.com/iorebuild/LetterShell.git
branch = main
[submodule "ThirdLib/ThreadX"]
path = ThirdLib/ThreadX
url = https://git.linuxacme.com/iorebuild/CortexM3ThreadXV6.git
branch = main
Binary file not shown.
Binary file not shown.
+26
View File
@@ -0,0 +1,26 @@
1、克隆仓库
```
git clone --recurse https://git.linuxacme.com/iorebuild/Stm32F10xProject.git
```
2、将子模块切换为main分支
```
cd Stm32F10xProject
```
```
git submodule foreach "git checkout main"
```
3、进入工程目录
```
cd Projects
```
```
git clone 'your_project'
```