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:
parent
92085b6f7d
commit
14460d6f38
2 changed files with 17 additions and 9 deletions
3
aliases
3
aliases
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue