Créez un nouveau référentiel en vous référant aux pages github.
Exemple: Cette fois, kentaro0919.github.io
$référentiel git clone
Exemple git clone https://github.com/kentaro0919/kentaro0919.github.io
Copiez le référentiel localement avec
Tout d'abord, spécifiez la destination de création de la page dans le nouveau référentiel.
$ lektor build --output-path path/kentaro0919.github.io
Started build
U index.html
U about/index.html
U projects/index.html
U blog/index.html
U static/style.css
U blog/first-post/index.html
Finished build in 0.08 sec
Started prune
Finished prune in 0.01 sec
Déplacer vers le référentiel
$ cd path/kentaro0919.github.io
Confirmez qu'il a été créé
$ ls
about blog index.html projects static
Ajouter au référentiel
$ git add .
commettre
$ git commit -m "first commit"
pousser vers github
$ git push
J'ai pu publier avec juste ça
Il semble qu'il puisse être publié de l'intérieur, donc la prochaine fois, il sera mis à jour de l'intérieur
Recommended Posts