在 Windows Terminal 中使用 Git Bash 时,经常会出现整个终端闪烁,非常影响使用体验。
这是因为 Git for Windows 的 /etc/inputrc 包含了 set bell-style visible 配置。解决办法就是在 ~/.inputrc 中添加 set bell-style none 或者 set bell-style audible 。
🔵 别忘记在
~/.inputrc 首行添加 $include /etc/inputrc 。Related
修改 Git 提交的作者信息
要修改 Git 提交(commit)的作者信息,直接使用命令可以对最近一次或历史多次的提交进行修改。
使用 Cloudflare Pages 部署博客
Cloudflare Pages is a JAMstack platform for frontend developers to collaborate and deploy websites.
Create Git Empty Branch
Create a new unborn branch, named <new-branch>. All tracked files are removed.