在线切图

https://www.img2go.com/zh/crop-image/editor#j=110e52f9-474d-4e80-badd-71f63f8820df

内网截图

https://getsharex.com/

Q:使用git pull 指令时报错

error: You have not concluded your merge (MERGE_HEAD exists).

A:解决方法:放弃本次merge操作,然后重新pull代码,手动修改冲突代码,合并上传。

git merge --abort   // 终止合并
git reset --merge   // 重置合并
git pull            // 重新拉取代码
git stash  暂存起来
git stash apply 还原到本地

sourcetreeapp

https://www.sourcetreeapp.com/

Git(Lazygit)

https://www.toutiao.com/article/7251952663876190781/

https://github.com/jesseduffield/lazygit

.gitignore

以”#”号开头表示注释;
以斜杠“/”开头表示目录;
以星号“*”通配多个字符;
以问号“?”通配单个字符
以方括号“[]”包含单个字符的匹配列表;
以叹号“!”表示不忽略(跟踪)匹配到的文件或目录;

*.txt  ,*.xls  表示过滤某种类型的文件
target/ :表示过滤这个文件夹下的所有文件
/test/a.txt ,/test/b.xls  表示指定过滤某个文件下具体文件
!*.java , !/dir/test/     !开头表示不过滤
*.[ab]    支持通配符:过滤所有以.a或者.b为扩展名的文件
/test  仅仅忽略项目根目录下的 test 文件,不包括 child/test等非根目录的test目录
文档更新时间: 2023-11-03 18:39   作者:admin