Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

7 total results found

iTerm2

2025

TIPI am using WezTerm now. Configuration Panes -> Show per-pane title bar with split panes Windows -> Hide scrollbars Profile->Terminal-> Show mark indicators Appearance->Panes-> Slide margins cmd+shift+c -> enter copy mode General->Selection-> Clicking on a ...

setup
iterm2
blog
2025

Keyboard Nerd

2025

Get Bundle ID on macOS osascript -e 'id of app "name"' References A Modern Space Cadet GitHub: ControlEscape.spoon GitHub: More Useful Keyboard Karabiner-Elements Issue: ChatGPT, Raycast, Alfred

keyboard
blog
2025

Modify Git Log Mail

Git Tricks

Use the following command to replace commit email and author information: git filter-branch --env-filter ' if [ "$GIT_COMMITTER_EMAIL" = "old@example.com" ] then export GIT_COMMITTER_NAME="new" export GIT_COMMITTER_EMAIL="new@example.com" fi if [ "$GIT...

git
mail
blog
2025

Ruby Source

2025

Error 这个错误表明在与gems.ruby-china.com服务器通信时发生了网络连接问题 Retrying dependency api due to error (2/4): Bundler::HTTPError Network error too many connection resets (due to connection reset by peer - Errno::ECONNRESET) 换源 官方源 gem sources --add https://rubygems.org/ --r...

sources
ruby
blog
2025

My Ansible

2025

Install kubectl docker run --rm -it \ -v "/Users/kuga/github/my-ansible":/ansible \ -v "$HOME/.ssh":/root/.ssh:ro \ -w /ansible \ willhallonline/ansible:2.9.27-alpine-3.16 \ ./deploy.sh x.x.x.x kubectl

kubectl
ansible
blog
2025

My Dotfiles

2025

tmux tmux-inside-tmux Alacritty Alacritty Font on macOS is slightly bolder (with use_thin_stroke set to true). issue Fix Commit defaults write -g AppleFontSmoothing -int 0 WezTerm macos_window_background_blur will lag screen.

dotfiles
blog
2025

Git Rename Similarity

Git Tricks

在 Git 中,--find-renames(或 -M)参数用于设置重命名检测的相似度阈值。默认情况下,Git 的重命名检测相似度阈值为 ​50%。如果你想查看当前 Git 配置中的默认值,可以使用以下方法: 查看 Git 的默认重命名阈值 Git 没有直接提供查看默认重命名阈值的命令,但你可以通过以下方式确认默认值: 官方文档:Git 的官方文档明确指出,默认的相似度阈值为 50%。 测试:你可以通过实际测试来验证默认值。 查看 Git 配置中的重命名阈值 如果你在 Git 配置中手动设置了重命名阈值,可...

blog
2025
similarity
rename
git