Last active
June 4, 2018 21:46
-
-
Save AlexandroPerez/b97656141cc5797231701d7a7e4633d8 to your computer and use it in GitHub Desktop.
Favorite git aliases, color and core configurations for a Linux environment
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 | |
ci = commit | |
st = status | |
br = branch | |
hist = log --pretty=format:'%Cgreen%h %Creset%ad | %Cblue%s%Cred%d %Creset[%an]' --graph --date=short | |
type = cat-file -t | |
dump = cat-file -p | |
[color] | |
ui = auto | |
branch = auto | |
interactive = auto | |
[core] | |
autocrlf = input | |
safecrlf = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment