Merge mintty-color-pastel-rc into your .minttyrc
or
| public ActionResult Data(string s, string f, string q, int? p) | |
| { | |
| ViewBag.CurrentSort = s; | |
| ViewBag.UsernameSortParm = String.IsNullOrEmpty(s) ? "username_desc" : ""; | |
| ViewBag.DateSortParm = s == "date" ? "date_desc" : "date"; | |
| ViewBag.HoursSortParm = s == "hours" ? "hours_desc" : "hours"; | |
| ViewBag.AlertSortParm = s == "alert" ? "alert_desc" : "alert"; | |
| if (q != null) | |
| { |
| <div class="box"> | |
| <div class="form-head box-title"> | |
| <h3><i class="icon-th-list"></i>Time Entry Status</h3> | |
| </div> | |
| <div> | |
| @using (Html.BeginForm("Data", "Status", FormMethod.Get)) | |
| { | |
| <div class="control-group search"> | |
| <div class="input-xxlarge"> | |
| @Html.TextBox("q", ViewBag.CurrentFilter as string, new { placeholder = "Search here..." }) |
| # A Liquid tag for Jekyll sites that allows embedding Gists and showing code for non-JavaScript enabled browsers and readers. | |
| # by: Brandon Tilly | |
| # Source URL: https://gist.github.com/1027674 | |
| # Post http://brandontilley.com/2011/01/31/gist-tag-for-jekyll.html | |
| # | |
| # Example usage: {% gist 1027674 gist_tag.rb %} //embeds a gist for this plugin | |
| require 'cgi' | |
| require 'digest/md5' | |
| require 'net/https' |
| @ECHO OFF | |
| sc stop W3SVC | |
| sc stop ReportServer$SQLEXPRESS | |
| start /b D:\xampp\apache\bin\httpd.exe | |
| start /b D:\xampp\mysql\bin\mysqld --defaults-file=D:\xampp\mysql\bin\my.ini --standalone --console |
| # If not running interactively, don't do anything | |
| [[ "$-" != *i* ]] && return | |
| # add clear function | |
| alias clear='printf "\033c"' | |
| # Lowercase username | |
| uname=`echo "$USERNAME" | tr "[A-Z]" "[a-z]"` | |
| # Lowercase hostname | |
| hname=`echo "$HOSTNAME" | tr "[A-Z]" "[a-z]"` |
Git can be used in a variety of ways which is cool. But still, when working within a team, it is good to have a consensus on a common, shared approach in order to avoid conflicts. This article quickly explains how we implemented the "git flow" pattern in one of our projects.
...is a popular strategy which works around the master branch, but in a less "aggressive" way (than the GitHub flow pattern for instance). You have two main branches: