Hi,
I’m trying to create a sublime-command that does something like git branch | grep -v $select_local_branch | xargs git branch -D
but I can’t make it work. Is there a way to do that?
Thank you!
Hi,
I’m trying to create a sublime-command that does something like git branch | grep -v $select_local_branch | xargs git branch -D
but I can’t make it work. Is there a way to do that?
Thank you!
That actually worked!! I didn’t even know such thing as “git aliases” existed! Thank you so much!!