Skip to content

Instantly share code, notes, and snippets.

@jbudziak
Last active October 13, 2015 12:08
Show Gist options
  • Save jbudziak/4193720 to your computer and use it in GitHub Desktop.
Save jbudziak/4193720 to your computer and use it in GitHub Desktop.
Configuration du fichier gitconfig
[core]
editor = subl
[color]
diff = auto
status = auto
branch = auto
[alias]
co = checkout
br = branch
st = status
a = add
ci = commit
lol = log --graph --decorate --pretty=oneline --abbrev-commit
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
graph = log --graph --pretty=format':%C(yellow)%h%Cblue%d%Creset %s %C(white) %an, %ar%Creset'
ignore = update-index --assume-unchanged
unignore = update-index --no-assume-unchanged
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment