Created
December 2, 2024 16:45
-
-
Save gregsadetsky/016a407dc86ace06832864295336d018 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
[alias] | |
cm = commit -m | |
a = ! git add -N . && git add -p | |
d = diff | |
dc = diff --cached | |
l = log | |
s = status | |
p = push | |
m = merge | |
master = checkout master | |
main = checkout main | |
b = checkout -b | |
alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / | |
editconfig = config --global --edit | |
addpush = ! git add . && git commit -m "." && git push | |
co = checkout | |
[core] | |
editor = /Applications/Sublime\\ Text.app/Contents/SharedSupport/bin/subl -n -w | |
[user] | |
name =YOURNAME | |
email = [email protected] | |
[push] | |
autoSetupRemote = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ok, I just setup the llm commit message thing.
llm install llm-claude-3
)llm keys set claude
llm -m claude-3.5-haiku "what is the capital of france"
... I should modify
g addpush
to use this, one thing at a time.