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

Report abuse

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

Report abuse

Pinned Loading

  1. rubygems/rubygems.org rubygems/rubygems.org Public

    The Ruby community's gem hosting service.

    Ruby 2.3k 908

  2. rubygems/guides rubygems/guides Public

    An effort to provide awesome documentation for the RubyGems ecosystem.

    SCSS 153 189

  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 814 218

  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 :/'