-
-
Save lennart/591549 to your computer and use it in GitHub Desktop.
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
#=========================================== | |
# Author: Francis Varga | |
# eMail: [email protected] | |
# Blog: http://varga-multimedia.com | |
#=========================================== | |
# | |
# This is my .gitconfig file | |
# | |
# Did you have question ask me ;)... | |
[core] | |
symlinks = false | |
autocrlf = input | |
[color] | |
diff = auto | |
branch = auto | |
status = auto | |
[alias] | |
st = status | |
d = diff | |
ci = commit -v | |
cia = commit -v -a | |
ca = commit -a -m | |
co = checkout | |
cp = cherry-pick | |
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
# AWESOME FEATURE ONLY WORKING IN 1.7.2 COMMANDLINE | |
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative | |
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
# AWESOME FEATURE ONLY WORKING IN 1.7.2 COMMANDLINE | |
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
lm = log master | |
llm = log -p master | |
b = branch | |
start = !sh -c 'git init && echo "Initial Git Repository" && touch ReadMe.md && echo "create ReadMe.md" && git add ./ && echo "Added all files" ' | |
pom = push origin master | |
ads = submodule add | |
redor = remote add origin | |
[pack] | |
packSizeLimit = 2g | |
[help] | |
format = html | |
[http] | |
sslCAinfo = /bin/curl-ca-bundle.crt | |
[user] | |
name = FrancisVarga | |
email = [email protected] | |
[achievement] | |
upload = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment