HiveBrain v1.2.0
Get Started
← Back to all entries
snippetjavascriptTip

How 30 seconds of code is deployed

Submitted by: @import:30-seconds-of-code··
0
Viewed 0 times
javascripthowdeployedcodeseconds

Problem

<style>
h2 > small {
display: block;
color: var(--color-text-lighter);
font-size: var(--font-md);

Solution

git push --force --quiet "https://${GH_TOKEN}@github.com/Chalarangelo/30-seconds-of-code.git" master > /dev/null 2>&1


display: block;
color: var(--color-text-lighter);
font-size: var(--font-md);
font-weight: var(--font-weight-normal);
margin-top: var(--spacing-4);
}

Code Snippets

git push --force --quiet "https://${GH_TOKEN}@github.com/Chalarangelo/30-seconds-of-code.git" master > /dev/null 2>&1
git submodule update --recursive --remote
git merge swtest/gh-pages --allow-unrelated-histories

Context

From 30-seconds-of-code: how-30-seconds-of-code-is-deployed

Revisions (0)

No revisions yet.