Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 306 Bytes

File metadata and controls

21 lines (13 loc) · 306 Bytes

git_tools

Helper scripts to make working with git easier.

Installation

  • Clone this repository.
  • Add the cloned folder to your path

Various additional useful commands

Delete Merged Branches

git branch --merged | \
   grep -v \* | \
   grep -v "main" | \
   xargs git branch -D