Skip to content
View qrush's full-sized avatar
🕸️
Making internets
🕸️
Making internets

Organizations

@rubygems @gitready @coworkbuffalo @OpenHack @nickelcityruby @pickaxe-club
Block or Report

Block or report qrush

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. rubygems/rubygems.org rubygems/rubygems.org Public

    The Ruby community's gem hosting service.

    Ruby 2.3k 896

  2. rubygems/guides rubygems/guides Public

    An effort to provide awesome documentation for the RubyGems ecosystem.

    SCSS 153 187

  3. shp shp Public

    A new UI for git. This doesn't work yet.

    Rust 28 1

  4. unix unix Public

    Mirror of the Restoration of 1st Edition UNIX kernel sources from pdf document.

    C 810 217

  5. vim-powerline patched fonts vim-powerline patched fonts
  6. spring clean your git repos! spring clean your git repos!
    1
    # remove any bad refs
    2
    git remote prune origin
    3
    
                  
    4
    # pipe into bash and auto-delete any branches that have been merged into master!
    5
    git log master --pretty=format:'%d' | grep '^ (origin' | tr -d ' ()' | sed 's/origin\//git push origin :/'