fix (zshrc): increae amount of repositories that can be pulled from
This commit is contained in:
parent
59c12ff606
commit
fe962313b5
2
zshrc
2
zshrc
@ -68,7 +68,7 @@ alias gd='g diff'
|
|||||||
alias glog='g log --graph --oneline'
|
alias glog='g log --graph --oneline'
|
||||||
alias gst='g status --short --branch'
|
alias gst='g status --short --branch'
|
||||||
# update all repositories within the current directory
|
# update all repositories within the current directory
|
||||||
alias update_repositories='find . -type d -name .git -execdir git pull \;'
|
alias update_repositories='find . -name ".git" -type d | xargs -P8 -I{} git --git-dir={} pull'
|
||||||
|
|
||||||
# Suppresses line numbers in less
|
# Suppresses line numbers in less
|
||||||
alias less='less --line-numbers'
|
alias less='less --line-numbers'
|
||||||
|
Loading…
Reference in New Issue
Block a user