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를 세울 필요가 없기 때문에 편리합니다.

좋은 웹페이지 즐겨찾기