Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Find list of files that contain a certain value: grep -iRl “value here“ ./
  2.  
  3. Delete all branches that start with a certain prefix: git branch | grep "value here" | xargs git branch -D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement