Last active
January 3, 2020 12:34
-
-
Save jfollmann/e50e3aa41e71db26156ec7400a276b00 to your computer and use it in GitHub Desktop.
Git configuration file
This file contains 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
# This is Git's per-user configuration file. | |
[color] | |
ui = auto | |
status = auto | |
diff = auto | |
branch = auto | |
interactive = auto | |
[user] | |
name = Jefferson Follmann | |
email = [email protected] | |
[alias] | |
co = checkout | |
lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30 | |
graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all | |
cm = commit | |
ac = !git add -A && git commit | |
st = status -sb | |
tags = tag -l | |
branches = branch -a | |
ignore = "!gi() { curl -L -s https://www.gitignore.io/api/$@ ;}; gi" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment