Skip to content

Instantly share code, notes, and snippets.

View c9952594's full-sized avatar

Craig Norton c9952594

  • Callcredit
  • Leeds
View GitHub Profile
@c9952594
c9952594 / commit-message-guidelines.md
Created September 10, 2018 07:43 — forked from robertpainsi/commit-message-guidelines.md
Commit message guidelines

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@c9952594
c9952594 / UrlRewriteResources.ps1
Created August 15, 2018 09:28 — forked from sheastrickland/UrlRewriteResources.ps1
Powershell DSC for UrlRewrite Module install and ApplicationHost changes
Package UrlRewrite
{
#Install URL Rewrite module for IIS
DependsOn = "[WindowsFeaturesWebServer]windowsFeatures"
Ensure = "Present"
Name = "IIS URL Rewrite Module 2"
Path = "http://download.microsoft.com/download/6/7/D/67D80164-7DD0-48AF-86E3-DE7A182D6815/rewrite_2.0_rtw_x64.msi"
Arguments = "/quiet"