Last active
November 21, 2016 06:27
-
-
Save Akagi201/3932257 to your computer and use it in GitHub Desktop.
Akagi201's .gitconfig
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
# | |
# @file .gitconfig | |
# @author Akagi201 | |
# @date 2014/05/24 | |
# | |
# 我的git全局配置 | |
# | |
[user] | |
name = Akagi201 | |
email = [email protected] | |
[core] | |
editor = vim | |
[color] | |
ui = auto | |
[alias] | |
st = status | |
ci = commit -a -v | |
co = checkout | |
br = branch | |
df = diff | |
sh = show | |
mg = merge | |
throw = reset --hard HEAD | |
throwh = reset --hard HEAD^ | |
[push] | |
default = current |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment