from--https://blog.csdn.net/xuanwolanxue/article/details/80609986 一、背景 在平时的软件开发过程中常常会有这样的场景,自己负责的某个模块会依赖其他模块或者第三方的library。这时你自己的模块是一个独立的代码仓库,你想要实现这样一种功能,当你从你的模块的代码仓库里把代码拉到本地来的时候,能自动的将你依赖的模块或第三方库都拉到指定的目录当中去。 当然要实现这个功能的方法有很多,比如使用repo之类的工具,又比如如果你使用的是svn作为版本管理工具,那么你可以使用svn的external机制来引用第三方的project。 这里要说的是使用git作为版本管理工具的情况。 二、git submodule 其它的细枝末节就不再赘述了,咱直奔主题。 先来看具体用例: 目前…
from--https://chromium.googlesource.com/infra/goma/client/+/refs/heads/main/doc/gomacc_gdi32.dll.md TL;DR - gomacc.exe with gdi32.dll lead to micro UI hangs and slows builds. Lock contention can cause UI hangs if many processes are destroyed at the same time. This can easily happen on goma builds. This issue was discussed here: https://randomascii.wordpress.com/2017…
from--http://www.cnblogs.com/flying_bat/archive/2013/09/16/3324769.html 一、AutoCRLF #提交时转换为LF,检出时转换为CRLF git config --global core.autocrlf true #提交时转换为LF,检出时不转换 git config --global core.autocrlf input #提交检出均不转换 git config --global core.autocrlf false 二、SafeCRLF #拒绝提交包含混合换行符的文件 git config --global core.safecrlf true #允许提交包含混合换行符的文件 git config --global core.safecrlf false #提交…
from--https://mqs.hk/index.php/archives/15/ Ⅰ.安装解包打包工具 apt install simg2img apt install img2simg Ⅱ.把system.img转换成ext4格式 simg2img system.img system_ext4.img Ⅲ.新建temp目录,并挂载ext4挂载到temp目录 mkdir temp sudo mount system_ext4.img temp/ -o loop Ⅳ.进入systemtemp 修改所需文件并修改权限 Ⅴ.取消挂载systemtemp目录 umount temp/ Ⅵ.打包修改好的ext4 img2simg system_ext4.img system_out.img
from--https://gott50.github.io/i3wm-autostart/ Today we want to enable our Autostart Scripts by starting i3wm. Find i3 Config File Fist we need to find our i3 Config File register a Script, witch runs when we start i3. It is most likely located at ~/.config/i3/config Run Script on Start of i3 Now we just tell i3 to run a Bash Script autostart.sh located at ~/.config/i3/ on…
https://blog.csdn.net/lbp0408/article/details/125548498 推荐使用南京大学的镜像,使用文档如下 https://doc.nju.edu.cn/books/35f4a/page/gradle 全局配置文件~/.gradle/init.gradle settingsEvaluated { settings -> settings.dependencyResolutionManagement { repositories { maven { url "https://maven.aliyun.com/repository/public" } google { url "https://maven.aliyun.com/repository/google" } } } } a…
from--https://juejin.cn/post/7128916522377936926 携手创作,共同成长!这是我参与「掘金日新计划 · 8 月更文挑战」的第13天,点击查看活动详情 什么是原生APP,什么是web APP? Web App即是一种框架型APP开发模式(HTML5 APP 框架开发模式),该开发具有跨平台的优势,该模式通常由“HTML5云网站+APP应用客户端”两部份构成,APP应用客户端只需安装应用的框架部份,而应用的数据则是每次打开APP的时候,去云端取数据呈现给手机用户。 原生APP又称Native App,该开发针对IOS、Android、Windows等不同的手机操作系统要采用不同的语言和框架进行开发,该模式通常是由“云服务器数据+APP应用客户端”两部份构成,APP应用所有的UI元素、数据内容、逻辑…