Skip to content

Instantly share code, notes, and snippets.

@eloone
Last active December 17, 2015 16:29
Show Gist options
  • Save eloone/5639179 to your computer and use it in GitHub Desktop.
Save eloone/5639179 to your computer and use it in GitHub Desktop.
My git settings
#append this to your .bashrc file in your home
#git auto-completion
source ~/.git-completion.sh
#git prompt
source ~/.git-prompt.sh
GIT_PS1_SHOWCOLORHINTS=true
GIT_PS1_SHOWSTASHSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
GIT_PS1_SHOWUPSTREAM="auto"
GIT_PS1_SHOWCOLORHINTS=true
PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
#settings for .gitconfig
[user]
name = your_name
email = example@example.com
[push]
default = matching
[giggle]
main-window-maximized = false
main-window-geometry = 1442x680+0+54
main-window-view = FileView
[core]
editor = nano
[merge]
tool = vimdiff
[color]
branch = auto
diff = always
interactive = auto
status = auto
pager = false
ui = auto
ui = true
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment