⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 null-bug.test

📁 linux下各种patch的管理工具
💻 TEST
字号:
	$ rm -rf d	$ mkdir -p d/patches	$ cd d	$ echo file > file	$ quilt new remove.diff	> Patch patches/remove.diff is now on top	$ quilt add file	> File file added to patch patches/remove.diffIn this case, the original file in the --- line must not have .orig appendedor else patch won't know the real original filename anymore.	$ rm -f file	$ quilt diff -p0	> Index: file	> ===================================================================	> --- file	> +++ /dev/null	> @@ -1 +0,0 @@	> -file	$ quilt refresh -p0	> Refreshed patch patches/remove.diff	$ quilt pop -q	> Removing patch patches/remove.diff	> No patches applied	$ quilt push -q	> Applying patch patches/remove.diff	> Now at patch patches/remove.diff		$ cd ..	$ rm -r d

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -