gitconfig revisit

Nothing major but two nice updates:

* showUntrackedFiles = all

When a new directory enters the repo space, this should show all files
in the directory instead of just the directory name

* fsckobjects = true

Universally recommended via the note in the file
This commit is contained in:
Andrew Tomaka 2017-04-06 10:43:51 -04:00
parent 92085b6f7d
commit 14460d6f38
No known key found for this signature in database
GPG key ID: C78D1A81582BAC86
2 changed files with 17 additions and 9 deletions

View file

@ -32,7 +32,7 @@ alias gdss="git diff --shortstat"
alias gfa="git-date-added"
alias gfl="git log --patch"
alias gi="gitignore-io"
alias gl="git lol"
alias gl="git fancy-graph"
alias gh="git hist"
alias ghd="git hist-details"
alias ght="git hist-tags"
@ -51,6 +51,7 @@ alias grc="git rm --cached"
alias grh="git reset --hard"
alias grm="git rm"
alias gs="git status"
alias gu="git undo"
alias gup="git branch --merged | egrep -v '(^\*|master|dev)' | xargs git branch -d"
alias gw="git diff --check"
alias Grep='grep'