Skip to content
View tazorax's full-sized avatar
Block or Report

Block or report tazorax

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

  1. golden-gateway golden-gateway Public

    Local gateway with Traefik and SSL

  2. math-utils math-utils Public

    Mathematical objects in a PHP library

    PHP

  3. 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