Last active
February 20, 2025 16:47
-
-
Save emeric-martineau/f2b03ea2e66dbaf3000651beb0d26048 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] | |
co = checkout | |
br = branch | |
ci = commit | |
st = status | |
ss = status -s | |
l = log --graph --pretty=format:\"%C(yellow)%h%Creset%C(red)%d%Creset %C(cyan)%cr%Creset %s %Creset%C(green)%an\" | |
lf = log --pretty=fuller | |
unadd = reset HEAD^ | |
graph = log --graph --abbrev-commit --decorate --format=format:'%C(yellow)%h%C(reset)%C(auto)%d%C(reset) %C(normal)%s%C(reset) %C(dim magenta)%an%C(reset) %C(dim blue)(%ar) %C(reset)' --all | |
pf = push --force-with-lease | |
ca = commit --amend --no-edit | |
[push] | |
autoSetupRemote = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment