From the release/* branch run
git log --no-merges master..$(git branch --show-current) --format="%s"
From the release/* branch run
git log --no-merges master..$(git branch --show-current) --format="%s"
To select more than a screen shows in the Postman Console try to change
.console-container {
display: flex;
flex-direction: column;
height: 100%;
}to
| <?php | |
| set_exception_handler( function(\Exception $e) { | |
| $rows = "\n ========= \n"; | |
| $exception = sprintf( | |
| "Exception: %s \n Origin: %s on line %s \n", | |
| $e->getMessage(), | |
| $e->getFile(), | |
| $e->getLine() | |
| ); |
Git message for pull:
There is no tracking information for the current branch.
Try:
git branch --set-upstream-to=origin/$(git symbolic-ref --short HEAD)
Source: https://salferrarello.com/there-is-no-tracking-information-for-the-current-branch/
| <?php | |
| interface Foo { | |
| public function foo(string $message): string; | |
| } | |
| interface Bar { | |
| public function process(string $message): string; | |
| } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| body { | |
| background: lightblue; | |
| } |
| https://speakerdeck.com/hofstef/domain-storytelling-1-day-workshop-at-ddd-eu-2019 | |
| https://www.wps.de/modeler/ | |
| https://www.yworks.com/yed-live/ |
| <?php declare(strict_types=1); | |
| class Test | |
| { | |
| private $arr = []; | |
| public function __construct() | |
| { | |
| for ( $i = 0; $i < 10000; $i++ ) | |
| { |
| docker stop $(docker ps -a -q) | |
| docker rm $(docker ps -a -q) |
| $ids = array_filter($ids, 'is_numeric'); |