Skip to content

Instantly share code, notes, and snippets.

View rdumont's full-sized avatar

Rodrigo Dumont rdumont

View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active April 30, 2024 19:19
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@JeffryGonzalez
JeffryGonzalez / restroutes.cs
Created August 31, 2011 15:01
Restful Routes MVC3
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Destroy",
"{controller}/{id}",
new { action = "Destroy" },
new { id=@"\d+", httpMethod = new RestHttpMethodConstraint("DELETE") }
);
routes.MapRoute(