Created
April 6, 2010 03:04
-
-
Save milmazz/357173 to your computer and use it in GitHub Desktop.
Configuration files for Git
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
[user] | |
name = Milton Mazzarri | |
email = [email protected] | |
[diff] | |
external = gitdiff | |
[pager] | |
diff = | |
[color] | |
status = auto | |
branch = auto | |
ui = auto | |
interactive = auto | |
pager = true | |
[color "status"] | |
added = green | |
changed = yellow | |
untracked = red | |
[color "branch"] | |
current = green reverse | |
local = green | |
remote = yellow | |
[core] | |
excludesfile = /home/milmazz/.gitignore | |
[alias] | |
plog = log --pretty=tformat:'%h %Cblue%cr%Creset %cn %Cgreen%s%Creset' --graph | |
st = status | |
di = diff | |
co = checkout | |
ci = commit | |
br = branch | |
sta = stash | |
[github] | |
user = milmazz | |
token = ... |
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
*.pyc | |
*.swp | |
*.debhelper | |
*~ | |
*# | |
\.#* | |
*.bak | |
*.mo | |
_build | |
_static | |
_templates | |
build/ | |
dist/ | |
tweepy.egg-info/ |
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
#!/bin/sh | |
vimdiff "$2" "$5" |
Agregado, muchas gracias por tu comentario.
Los alias estan comodos, yo aplique la misma del diff pero para meld
Aqui el script que estoy usando para desplegar en el bash prompt el nombre del branch en el que estas (y colorizado para indicar si hay cambios o no), a mi me es muy util (no recuerdo el link original del gist)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Quizás te interesen estos alias para el .gitconfig:
Saludos