Last active
September 13, 2025 13:15
-
-
Save ktimothy/3205765 to your computer and use it in GitHub Desktop.
git config
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
| [alias] | |
| h = log --pretty=format:\"%h \\\"%s\\\" by %an %ci (%ai)\" -10 --graph | |
| s = status | |
| a = log -g --pretty=format:\"%h %cd %ad \\\"%s\\\" by %an (%cn)\" --all | |
| p = pull --rebase | |
| pff = push --force | |
| [user] | |
| name = Tim Kovalev | |
| email = timothy.kovalev@gmail.com | |
| signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKIgkJ1/6kByAvlW7L+yykU/rZm5I5HWvwo7fsmc6rVH | |
| [core] | |
| editor = "subl -w" | |
| [merge] | |
| conflictstyle = diff3 | |
| [push] | |
| default = current | |
| [pull] | |
| default = current | |
| [branch] | |
| autosetuprebase = always | |
| autosetupmerge = true | |
| [filter "media"] | |
| required = true | |
| clean = git media clean %f | |
| smudge = git media smudge %f | |
| [filter "lfs"] | |
| clean = git-lfs clean -- %f | |
| smudge = git-lfs smudge -- %f | |
| process = git-lfs filter-process | |
| required = true | |
| [gpg] | |
| format = ssh | |
| [gpg "ssh"] | |
| program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign" | |
| [commit] | |
| gpgsign = true |
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
| export PATH=$PATH:"/Applications/Sublime Text.app/Contents/SharedSupport/bin" | |
| # fnm | |
| FNM_PATH="/usr/local/opt/fnm/bin" | |
| if [ -d "$FNM_PATH" ]; then | |
| eval "`fnm env`" | |
| fi | |
| export PATH="/usr/local/opt/openjdk/bin:$PATH" | |
| # The next line updates PATH for the Google Cloud SDK. | |
| if [ -f '/Users/timkovalev/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/timkovalev/Downloads/google-cloud-sdk/path.zsh.inc'; fi | |
| # The next line enables shell command completion for gcloud. | |
| if [ -f '/Users/timkovalev/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/timkovalev/Downloads/google-cloud-sdk/completion.zsh.inc'; fi |
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
| # .ssh/config | |
| Host * | |
| IdentityAgent "/Users/timkovalev/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment