Skip to content
View tazorax's full-sized avatar

Block or report tazorax

Report abuse

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

Report abuse

Pinned Loading

  1. http-pong http-pong Public

    🏓 An HTTP server that responds and logs each request in the standard output.

    Go

  2. Clean local branches which does not ... Clean local branches which does not exists anymore on remote
    1
    #!/bin/bash
    2
    git fetch -p && for branch in $(git for-each-ref --format '%(refname) %(upstream:track)' refs/heads | awk '$2 == "[gone]" {sub("refs/heads/", "", $1); print $1}'); do git branch -D $branch; done