# Linux **Repository Path**: ChenBlue/linux ## Basic Information - **Project Name**: Linux - **Description**: 一些学习Linux的代码 - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2017-12-19 - **Last Updated**: 2021-10-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Linux ### 和 Linux 相关的一些东西 | 项目 | 说明 | | :------: | :---------------------: | | 4412 | 韦东山三期项目 | | C | 学习C/C++语言 | | document | 一些文档 | | driver | Linux驱动(韦东山二期) | | Linux | Linux系统编程 | | Python | Python语法 | | shell | shell编程 | | qt | qt编程 | |rasppberri| 树莓派相关 | | ROS | ros code | ### **仓库截止 2021-4-25 之后不再更新后续转repo 或者git子模块来管理** # repo (需要python环境) **下载工具** ``` git clone https://gitee.com/ChenBlue/git-repo.git ``` **下载代码** ``` repo init -u git@gitee.com:ChenBlue/manifest.git -m default.xml --repo-url=git@gitee.com:ChenBlue/git-repo.git ``` **或** ``` repo init -u https://gitee.com/ChenBlue/manifest.git -m default.xml --repo-url=https://gitee.com/ChenBlue/git-repo.git ``` # git 子模块 **下载代码** ``` git clone --recurse-submodules git@gitee.com:ChenBlue/root.git ``` **或** ``` git clone --recurse-submodules https://gitee.com/ChenBlue/root.git ``` 如果忘记带子模块参数得到空文件可用下面命令拉去子模块代码 ``` git submodule update --init --recursive ```