GitHub Pages 시도
2286 단어 github-pages
GitHub Pages란?
GitHub 계정이 있다면 GitHub Pages 에서 매우 쉽게 자신의 웹사이트를 만들 수 있습니다. Electron 이나 YEOMAN 이나 Bootstrap 등이 이용하고 있습니다. (그 외의 Example .)
개인의 WebSite로서는 틀림없네요.
조속히 만들어 보았다.
Create a repository
username.github.io라는 리포지토리를 만듭니다. username이 계정 이름과 일치하지 않으면 작동하지 않습니다.
Clone the repository
만들고 프로젝트를 clone합니다.
$ git clone https://github.com/uguisuhohokekyo/uguisuhohokekyo.github.io
Cloning into 'uguisuhohokekyo.github.io'...
warning: You appear to have cloned an empty repository.
Push
index.html을 만들고 push합니다.
$ echo "Hello World" > index.html
$ git add --all
$ git commit -m "Initial commit"
[master (root-commit) 9e3adff] Initial commit
1 file changed, 1 insertion(+)
create mode 100644 index.html
$ git push -u origin master
Counting objects: 3, done.
Writing objects: 100% (3/3), 222 bytes | 222.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote:
remote: Create a pull request for 'master' on GitHub by visiting:
remote: https://github.com/uguisuhohokekyo/uguisuhohokekyo.github.io/pull/new/master
remote:
To https://github.com/uguisuhohokekyo/uguisuhohokekyo.github.io
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
결과
와우, 내 WenSite를 만들 수있었습니다.
서버나 DB를 세울 필요가 없기 때문에 편리합니다.
Reference
이 문제에 관하여(GitHub Pages 시도), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/uguisu/items/aab68b0336f219f6775c
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Create a repository
username.github.io라는 리포지토리를 만듭니다. username이 계정 이름과 일치하지 않으면 작동하지 않습니다.
Clone the repository
만들고 프로젝트를 clone합니다.
$ git clone https://github.com/uguisuhohokekyo/uguisuhohokekyo.github.io
Cloning into 'uguisuhohokekyo.github.io'...
warning: You appear to have cloned an empty repository.
Push
index.html을 만들고 push합니다.
$ echo "Hello World" > index.html
$ git add --all
$ git commit -m "Initial commit"
[master (root-commit) 9e3adff] Initial commit
1 file changed, 1 insertion(+)
create mode 100644 index.html
$ git push -u origin master
Counting objects: 3, done.
Writing objects: 100% (3/3), 222 bytes | 222.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
remote:
remote: Create a pull request for 'master' on GitHub by visiting:
remote: https://github.com/uguisuhohokekyo/uguisuhohokekyo.github.io/pull/new/master
remote:
To https://github.com/uguisuhohokekyo/uguisuhohokekyo.github.io
* [new branch] master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.
결과
와우, 내 WenSite를 만들 수있었습니다.
서버나 DB를 세울 필요가 없기 때문에 편리합니다.
Reference
이 문제에 관하여(GitHub Pages 시도), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/uguisu/items/aab68b0336f219f6775c
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(GitHub Pages 시도), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/uguisu/items/aab68b0336f219f6775c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)