摘要: 1. worktree title: worktree的路径的文件夹自己重命名(修改名称)后发现没有git了 keyword: git worktree repair prune 快速方法 问题:父级文件夹 KBV3NC 改为 kbscan导致的worktree失败,可以修改worktree路径下的 阅读全文
posted @ 2022-08-20 14:05 QIYUEXIN 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 批量删除远程tag $ git ls-remote -t --refs -q | awk '{print ":"$2}' | xargs git push origin To ssh://gitlab.knd.com.cn:10022/qiyuexin/keyboard.git - [deleted 阅读全文
posted @ 2022-06-20 15:05 QIYUEXIN 阅读(298) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/anqixiang/article/details/117903529 GitLab中如何批量删除本地以及远程的TAG标签 https://blog.csdn.net/ouyang_peng/article/details/121123051 一、概述二、 阅读全文
posted @ 2022-06-18 16:41 QIYUEXIN 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Shell 语言中的if条件 一、if的基本语法:if [ command ];then 符合该条件执行的语句elif [ command ];then 符合该条件执行的语句else 符合该条件执行的语句fi二、文件/文件夹(目录)判断[ -b FILE ] 如果 FILE 存在且是一个块特殊文件则 阅读全文
posted @ 2022-06-17 22:17 QIYUEXIN 阅读(288) 评论(0) 推荐(0) 编辑
摘要: https://www.pandoc.org/installing.html https://github.com/jgm/pandoc/releases/tag/2.18 https://blog.csdn.net/weixin_43829719/article/details/124267348 阅读全文
posted @ 2022-06-17 19:44 QIYUEXIN 阅读(51) 评论(0) 推荐(0) 编辑
摘要: shell脚本中exit命令使用千次阅读 2020-09-30 10:19:54 exit命令用于退出当前shell,在shell脚本中可以终止当前脚本执行。 $ exit --help exit: exit [n] Exit the shell. Exits the shell with a st 阅读全文
posted @ 2022-06-17 09:47 QIYUEXIN 阅读(734) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/431105940 https://findicons.com/icon/62856/agt_upgrade_misc# 阅读全文
posted @ 2022-06-16 20:18 QIYUEXIN 阅读(39) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_23452385/article/details/109145151 阅读全文
posted @ 2022-06-16 17:03 QIYUEXIN 阅读(54) 评论(0) 推荐(0) 编辑
摘要: Vue/React项目的package.json文件scripts命令解析 前端package.json中的scripts 阅读全文
posted @ 2022-06-16 11:14 QIYUEXIN 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 我从命令行使用Git,并尝试在提交消息(使用git commit -m "")中添加换行符而不进入Vim. 这可能吗? 当然,它是如何完成的取决于你的shell.在Bash中,您可以在消息周围使用单引号,并且可以保持报价打开,这将使Bash提示另一行,直到您关闭报价.像这样: git commit 阅读全文
posted @ 2022-06-16 09:12 QIYUEXIN 阅读(36) 评论(0) 推荐(0) 编辑