Created
July 17, 2020 17:15
-
-
Save BrandowBuenos/b1878198cec93e0d1d021e58db78ce4b to your computer and use it in GitHub Desktop.
.gitconfig shortcuts
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 = Your_Name | |
email = [email protected] | |
[core] | |
editor = code --wait | |
[push] | |
followTags = true | |
[alias] | |
c = !git add --all && git commit -m | |
s = !git status -s | |
l = !git log --pretty=format:'%C(blue)%h%C(red)%d %C(white)%s - %C(cyan)%cn, %C(green)%cr' | |
amend = !git add --all && git commit --amend --no-edit | |
count = ! git shortlog -s --grep |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment