Use rg instead of egrep

This commit is contained in:
Daniel Lynn 2022-10-07 20:18:33 -05:00
parent e837714fb3
commit 72a2787a1e
Signed by: daniel
GPG Key ID: 655C07B9B3DDC88B

View File

@ -19,7 +19,7 @@
br = branch br = branch
last = log -1 HEAD last = log -1 HEAD
cl = clone cl = clone
cleanup = "!git branch --merged | egrep -v \"(\\*|master|main|dev|develop)\" | xargs -r git branch -d" cleanup = "!git branch --merged | rg -v \"(\\*|master|main|dev|develop)\" | xargs -r git branch -d"
history = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit history = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
ignore = update-index --assume-unchanged ignore = update-index --assume-unchanged