My personal website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Nicolas Massé 73e18014a9
Merge pull request #2 from nmasse-itix/2019-02-08-update
7 years ago
content 2019-02-08 update 7 years ago
static Google Console verification file 7 years ago
themes initial commit 7 years ago
.gitignore gitignore 7 years ago
.gitmodules initial commit 7 years ago
README.md fix readme 7 years ago
config.toml new article: Use Ansible to manage the QoS of your OpenShift workload 7 years ago
netlify.toml netlify config 7 years ago

README.md

www.itix.fr

How to update this website

Create a new branch:

git checkout -b "$(date +%F)-update"

Create a new page:

hugo new speaking/my-wonderful-event.md
vim content/speaking/my-wonderful-event.md

Check locally that your changes are OK:

hugo server -D &

Commit your changes:

git add .
git commit -m "$(date +%F) update"
git push --set-upstream origin "$(date +%F)-update"

Go on GitHub and create a new pull request based on this new branch.

Netlify will provision a dedicated instance for this new pull request. The URL will be posted in a comment in the PR.

Check that the modifications are OK.

Merge the pull request

Delete the remote branch.

Change back to the master branch locally:

git checkout master
git pull

Delete the old branch:

git branch -d "$(date +%F)-update"