fix (zshrc): increae amount of repositories that can be pulled from

This commit is contained in:
eeemsi 2023-02-11 10:12:14 +01:00
parent 59c12ff606
commit fe962313b5
1 changed files with 1 additions and 1 deletions

2
zshrc
View File

@ -68,7 +68,7 @@ alias gd='g diff'
alias glog='g log --graph --oneline'
alias gst='g status --short --branch'
# 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
alias less='less --line-numbers'