See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
#!/bin/bash | |
# http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
set -euo pipefail | |
IFS=$'\n\t' | |
# inspired by | |
# https://gist.github.com/codeinthehole/26b37efa67041e1307db | |
# https://github.com/why-jay/osx-init/blob/master/install.sh | |
# https://github.com/timsutton/osx-vm-templates/blob/master/scripts/xcode-cli-tools.sh |
diskutil list | |
diskutil unmountDisk /dev/disk2 | |
diskutil eraseDisk FAT32 SANDISK /dev/disk2 |
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs
First let's make sure HB is updated. Open up terminal for the following steps.
$ brew update
This guide is kept up-to-date as Discord and available resources change!
A basic server template is available here
Hello! I'm jagrosh#4824! I'm writing this guide to try to help new server owners set up and grow their servers, which is a commonly-requested topic. It's very easy to go about this the wrong way, so it's best to be prepared and make smart decisions so that your community can flourish!
The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.
The correct way of creating a private frok by duplicating the repo is documented here.
For this assignment the commands are:
git clone --bare [email protected]:usi-systems/easytrace.git
<?php | |
session_start(); | |
if (isset($_GET["locale"])) { | |
$locale = $_GET["locale"]; | |
} | |
else if (isset($_SESSION["locale"])) { | |
$locale = $_SESSION["locale"]; | |
} | |
else { |
blockquote, q { | |
quotes: none; | |
} | |
q:before, blockquote:before { | |
content: open-quote; | |
} | |
blockquote:before { | |
margin-left: -0.5em; | |
} | |
q:after, blockquote:after { |