Published: 07 Mar 2018 › Updated: 07 Mar 2018
Github Pages를 이용하여 무료 사이트 만들기
Github Pages를 이용하면 사용자(user)나 조직(organization) 페이지나 각 프로젝트 페이지를 무료로 만들 수가 있다.
Github Repository 생성하기
username.github.io 이름의 Repository를 Github에 생성한다. (https://github.com/new) username은 Github에 가입한 로그인 이름 또는 조직 이름이다.
Repository 복제
Github에 생성한 Repository를 내 PC에 복제한다.
git clone https://github.com/devtoy/devtoy.github.io
홈페이지 생성
홈페이지를 만들고 내 PC에 복제한 Repository에 추가한다.
cd devtoy.github.io
echo "Hello World" > index.html
git add .
git commit -m "Initial Commit"
echo "Hello World" > index.html 명령어 대신 이미 만들어 놓은 홈페이지를 복사하면 된다.
Github에 업로드
내 PC의 Repository에 추가된 내용을 Github에 업로드 해야한다.
git push -u origin master
사용자 이름과 비밀번호를 넣으면 업로드가 된다.
홈페이지 확인
업로드 되었으면 다음의 주소를 웹브라우져로 확인해보자
이제 웹브라우저에서 업로드한 내용을 확인할 수가 있다.
Leave Github Pages를 이용하여 무료 사이트 만들기 to:
Read more #github posts
Best Posts From 동동아리아빠
We have not curated any of ohk5004's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.
More Posts From 동동아리아빠
- [Ethereum] 스마트 컨트렉트로 "Hello, World"를 출력하자.
- [Blockchain] Docker에 Ethereum Wallet을 설치하기 #2
- [Blockchain] Docker에 Ethereum Wallet을 설치하기 #1
- Pelican Blog를 AWS CodeBuild를 이용하여 S3에 자동으로 배포하기
- Github에서 AWS CodeCommit으로 이전하기
- 라즈베리파이와 서버리스 환경을 통하여 얼굴분석 서비스 구현하기 #1 (소개)
- AWS API Gateway와 Lambda를 이용하여 serverless api를 구성해보자
- Docker를 이용하여 멀티플랫폼에서 MSSQL + Laravel을 개발해보자.
- 괜찮은 Ionic 튜토리얼 번역
- Github Pages를 이용하여 무료 사이트 만들기