摘要:
1) a.+?d表示:以“a”开始,后面是除了回车以外的其它字符,最后以“d”结束。 \[5531\].+?3903 表示:以[5531]开始,3903结尾的那一行,在notepad++中,[]表示匹配其中任意字符,如果要搜索[],要加转义字符“\”。 Ref: https://blog.csdn. 阅读全文
摘要:
https://www.pianshen.com/article/7437339606/ 阅读全文
摘要:
2020-05-03 git clean命令用来从你的工作目录中删除所有没有tracked过的文件 git clean经常和git reset --hard一起结合使用,git reset只影响被track过的文件, 所以需要clean来删除没有track过的文件. 结合使用这两个命令能让你的工作目 阅读全文
摘要:
https://blog.csdn.net/bytxl/article/details/48287499 FILE之GLOB:相对路径 https://blog.csdn.net/siwen0/article/details/102564310 阅读全文
摘要:
git stash save git stash list git stash show git stash apply stash@{0} //0为序号, git stash pop stash@{0} git stash drop stash@{0} :丢弃stash@{$num}存储,从列表中 阅读全文
摘要:
Git默认配置为忽略大小写,解决方法 git config core.ignorecase false 阅读全文