My hugo mini-training
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.
 
 

375 B

title weight
Git Commit 3

By committing your work in a GIT repository, you will be able to collaborate with your peers for reviews and contributions.

Commit your work:

git add .
git commit -m 'initial version'

And push it on your GitHub account:

git remote add origin git@github.com:nmasse-itix/hugo-workshop.git
git push -u origin master