Skip to content
View jjhamshaw's full-sized avatar

Highlights

  • Pro

Block or report jjhamshaw

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. scripts to clean up local git branch... scripts to clean up local git branches for a given repository
    1
    # safe delete branches
    2
    # (deletes all MERGED branches, except dev and master)
    3
    git branch --merged | grep -v "\*" | grep -v master | grep -v dev | xargs -n 1 git branch -d
    4
    
                  
    5
    # delete branches