notes for npmCamp 2016
Isaac Schlueter
Isaac Schlueter
Here is how I like to structure my Git branches and commit messages.
tl;dr Don’t use links like github.com/owner/repo/blob/master/file.ext#L13 because that branch will change! Use github.com/owner/repo/blob/COMMIT_SHA/file.ext...
Ever wanted to look through a Git repository’s history for a commits involving a specific string, but ignoring a certain directory (e.g. for packaged/built c...
Thoughtbot’s Hound-CI service runs Rubocop on Ruby projects. It had a setting to show the name of the “cop” (style rule) that failed, which made it easier to...