Skip to content

Instantly share code, notes, and snippets.

@taewanme
Last active April 18, 2017 04:22
Show Gist options
  • Save taewanme/6ee53e68568fcb55b3dc5ed14ee6e8f3 to your computer and use it in GitHub Desktop.
Save taewanme/6ee53e68568fcb55b3dc5ed14ee6e8f3 to your computer and use it in GitHub Desktop.
team 블러그 준비사항

사전 준비사항

  • github 계정  - mail

    • password
  • 주의 사항: 네트웍은 clear guest 혹은 사외 네트웍을 사용할 것

hugo installation

git 설치

계정 정보 설정

  • 프로그램 실행: git bash  - 프롬프트에 다음 명령 수행
git config --global user.name "taewan kim" #github에 표시될 이름
git config --global user.email "[email protected]" #github 계정 emial

설치 테스트

git repository 복제

  • 브라우저에서 oracloud_repo 페이지 오픈
  • 로그인 상태가 아닐 경우 github 로그인
  • repository fork  - 오른쪽 상단의 "fork" 버튼 클릭  - 팝업에서 repository 선택 팝업창이 오픈되면 "@본인아이디" 클릭  - 팝업에 본인 아이디가 안뜰 경우에는 하단의 링크 선택    - 본인아이디/oracloud_repo    - 예: taewanme/oracloud_repo
  • git bash 터미널로 이동
cd c:/hugo/Sites
git clone https://github.com/{{본인 GITHUB 아이디}}/oracloud_repo.git 
# 예제: https://github.com/taewanme/oracloud_repo.git
cd oracloud_repo
ls >> test
git add *
git commit -m "first commit"
git push origin master #팝업에 아이디 패스워드 입력
'''

> push가 정상정으로 완성되면 성공입니다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment