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

Block or report markspare

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. Git alias for easily pushing a new b... Git alias for easily pushing a new branch to origin
    1
    [alias]
    2
      pushit = !git push -u origin `git rev-parse --abbrev-ref HEAD`
  2. Git function for easily pruning loca... Git function for easily pruning local branches
    1
    #!/usr/bin/env bash
    2
    # https://stackoverflow.com/a/17029936/3004335
    3
    # Add file to /usr/local/bin and make executable
    4
    
                  
    5
    if [ ! -d .git/ ]; then