Last active
August 27, 2020 06:38
-
-
Save cameroncking/a06123faa358cd51f0ba6f720a87b2cc to your computer and use it in GitHub Desktop.
personal .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
[core] | |
# on windows: | |
# autocrlf = true | |
# on linux: | |
autocrlf = input | |
[alias] | |
lol = log --oneline --decorate --graph --all --color=auto | |
co = checkout | |
st = status | |
ci = commit | |
br = branch | |
fe = fetch --all | |
me = merge --no-ff --no-commit | |
pull = pull --ffonly | |
[push] | |
default = simple | |
[user] | |
name = Cameron King | |
email = [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment