Last active
September 17, 2025 14:49
-
-
Save asvinours/4052f609aafc728882b604933690f570 to your computer and use it in GitHub Desktop.
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
| # This is Git's per-user configuration file. | |
| [user] | |
| # Please adapt and uncomment the following lines: | |
| name = | |
| email = | |
| signingkey = /Users/<user>/.ssh/id_ed25519.pub | |
| [alias] | |
| deleted = log --diff-filter=D --summary | |
| a = add | |
| st = status | |
| cb = checkout -b | |
| cm = checkout master | |
| cl = checkout lab | |
| cv = checkout develop | |
| ps = push origin HEAD | |
| pl = pull --rebase | |
| ct = commit | |
| df = diff -M -D -w | |
| dfc = diff -M --cached -D -w | |
| mgm = merge --no-commit --no-ff origin/master | |
| cln = clean --exclude ".envrc" -fdx | |
| [core] | |
| editor = vim | |
| [commit] | |
| gpgsign = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment