Last active
November 2, 2022 11:14
-
-
Save mkholodnyak/ade14268d956f70c0079656162010a70 to your computer and use it in GitHub Desktop.
.gitconfig
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 = Max Kholodnyak | |
email = [email protected] | |
[alias] | |
a = !git add . && git status | |
co = checkout | |
cm = commit | |
ca = commit --amend | |
br = branch | |
st = status | |
cr = checkout --track -b | |
hist = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
mm = pull origin master:master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment