摘要: .gitmodules 文件。 该配置文件保存了项目 URL 与已经拉取的本地目录之间的映射 如果给 git clone 命令传递 --recurse-submodules 选项,它就会自动初始化并更新仓库中的每一个子模块, 包括可能存在的嵌套子模块。 如果你已经克隆了项目但忘记了 --recurs 阅读全文
posted @ 2022-09-30 13:57 ijpq 阅读(40) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <iostream> #define MACRO(x,y,cb) \ { \ printf("%s, %s\n",(x), (y)); \ (cb); \ } int func( ) { std::cout << "calling func" 阅读全文
posted @ 2022-09-30 12:20 ijpq 阅读(30) 评论(0) 推荐(0) 编辑