Some rules to use on your git commit messages.
[jira issue] #[action] : [issue description]
| <table> | |
| <tr> | |
| <td valign="top">2/4/2013</td> | |
| <td> | |
| <dl class="dl-activities"> | |
| <dt> | |
| <button type="button" class="btn btn-mini btn-success disabled" disabled="disabled"> | |
| <i class="icon-plus icon-white"></i> | |
| </button> | |
| </dt> |
| You can use these settings on your RubyMine [http://rubymine.org]. Here are some RubyMine Live Templates. |
| body { | |
| margin: 0; | |
| } | |
| #full > img { | |
| display: block; | |
| float: left; | |
| width: 50vw; | |
| height: 50vh; | |
| object-fit: cover; |
| <head> | |
| ... | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <!--[if lt IE 9]> | |
| <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
| <![endif]--> | |
| </head> |
| Add and remove row dynamically. |
| # Cucumber example feature in Gherkin. | |
| Feature: Example feature | |
| As an user of Cucumber.js | |
| I want to have documentation on Cucumber | |
| So that I can concentrate on building awesome applications | |
| Scenario: Reading documentation | |
| Given I am on the Cucumber.js GitHub repository | |
| When I go to the README file |
| // Example got on LinkedIn (https://www.linkedin.com/groups/3242849/3242849-6143986010788216834): | |
| // https://github.com/glondon/signup/blob/master/gdform.php | |
| <?php | |
| if (empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) !== 'xmlhttprequest') | |
| exit(header('Location: http://signupandmakemoney.com/info/ajax-error.html')); | |
| session_start(); | |
| /* Don't need this anymore... | |
| $request_method = $_SERVER["REQUEST_METHOD"]; | |
| if($request_method == "GET"){ | |
| $query_vars = $_GET; |
| [core] | |
| repositoryformatversion = 0 | |
| filemode = true | |
| bare = false | |
| logallrefupdates = true | |
| ignorecase = true | |
| precomposeunicode = true | |
| [remote "origin"] | |
| url = https://github.com/fanhero/super-admin-portal.git | |
| fetch = +refs/heads/*:refs/remotes/origin/* |