Last active
December 22, 2025 15:01
-
-
Save lijunle/e3ac6871c0cdd4f05f3852479763b810 to your computer and use it in GitHub Desktop.
Various Configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = Junle Li | |
| email = lijunle@gmail.com | |
| [core] | |
| excludesfile = ~/.gitignore | |
| pager = cat | |
| [gc] | |
| auto = 0 | |
| [push] | |
| autoSetupRemote = true | |
| [alias] | |
| br = branch -v | |
| ci = commit -v | |
| co = checkout | |
| cp = cherry-pick | |
| ds = diff --staged --find-renames | |
| ft = fetch -p | |
| fta = fetch -p --all | |
| st = status -sb | |
| ps = push --set-upstream | |
| tree = log --all --graph --decorate --oneline --simplify-by-decoration | |
| merge-into = "!f() { current=$(git symbolic-ref --short HEAD); git checkout \"$1\" && git merge \"$current\" --no-ff && git branch -D \"$current\"; }; f" | |
| [credential] | |
| helper = store | |
| [filter "lfs"] | |
| required = true | |
| clean = git-lfs clean -- %f | |
| smudge = git-lfs smudge -- %f | |
| process = git-lfs filter-process |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set-option -g mouse on | |
| set-option -g base-index 1 | |
| set-option -g default-shell $SHELL | |
| set-window-option -g mode-keys vi | |
| set-window-option -g window-status-current-bg yellow | |
| bind-key N previous-window |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment