Skip to content
View pvspain's full-sized avatar
  • Melbourne, Australia

Block or report pvspain

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. git-triangular-workflow git-triangular-workflow
    1
    # Git "triangular" workflow <!-- omit from toc -->
    2
    
                  
    3
    > For hacking on open source projects (with a canonical upstream repository).
    4
    5
    - [Reference][1]
  2. New ssh user keys New ssh user keys
    1
    KEY_PATH="${HOME}/.ssh"
    2
    
                  
    3
    # No error if directory exists
    4
    mkdir --parents ${KEY_PATH}
    5
    
                  
  3. howto-process-a-pull-request-locally howto-process-a-pull-request-locally
    1
    # How to process a pull-request locally <!-- omit from toc -->
    2
    _Formally: How to merge changes from a 'forked' Git repository_
    3
    
                  
    4
    - [Reference][6]
    5
    
                  
  4. Git use cases Git use cases
    1
    # Git use cases <!-- omit from toc -->
    2
    
                  
    3
    ## Index <!-- omit from toc -->
    4
    - [Create a branch from unstaged/uncommitted changes](#create-a-branch-from-unstageduncommitted-changes)
    5
    - [_Move_ the most recent 3 commits to a *new* branch](#move-the-most-recent-3-commits-to-a-new-branch)
  5. build-monorepo build-monorepo
    1
    #! /usr/bin/env bash
    2
    
                  
    3
    # This script follows the construction of a monorepo using the facilities
    4
    # within npm. The reference, below, is a blog article, walking through 
    5
    # the incremental process.