Last active
September 23, 2020 14:49
-
-
Save chreke/7fc6cdc9ee88290c32f26016f43736d4 to your computer and use it in GitHub Desktop.
Example .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
[alias] | |
st = status | |
ci = commit --verbose | |
br = branch | |
co = checkout | |
# List branches sorted by latest commit date | |
mru = branch --sort=-committerdate | |
[user] | |
name = John Doe | |
email = [email protected] | |
[color] | |
branch = auto | |
diff = auto | |
interactive = auto | |
status = auto | |
[core] | |
# Change this to your liking, e.g. "code" | |
editor = vim | |
[rebase] | |
# Automatically reorder "fixup!" commits | |
autosquash = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment