1. git

1-(1). git 설치

root@localhost:/home/westporch# apt-get install git

alt text

1-(2). git 설정

alt text

1). 사용자 정보 설정

root@localhost:/home/westporch# git config --global user.name "Westporch"
root@localhost:/home/westporch# git config --global user.email westporch@gmail.com

2). 기본 편집기 설정

root@localhost:/home/westporch# git config --global core.eidtor vim

3). git 설정 확인

root@localhost:/home/westporch# git config --list
user.name=Westporch
user.email=westporch@gmail.com
core.editor=vim
push.default=matching
root@localhost:/home/westporch# 

1-(3). git clone

alt text

git clone 명령어를 이용해서 repository를 로컬에 받아옵니다.

iroot@localhost:/home/westporch# git clone https://github.com/debianusers/debianusers.github.io.git

2. 마크다운 문서

마크다운 문법은 stackedit.io에서 연습할 수 있습니다.

2-(1). 마크다운 문서 생성

파일 이름은 YYYY-MM-DD-Your-file-name.markdown 형식을 유지해야 합니다.

마크다운 문서의 확장자는 markdown, md 둘 다 사용할 수 있습니다.

alt text

매번 마크다운 문서를 작성하기가 번거로워서 문서 양식을 만들었습니다. 파일 이름은 원하는 이름으로 바꾸면 됩니다.

root@localhost:/home/westporch/Git/debianusers.github.io/_posts# cp 2015-01-01-welcome-to-debianusers.markdown YYYY-MM-DD-Your-file-name.markdown

2-(2). 마크다운 문서 편집

alt text

문서 양식을 바탕으로 작업할 때 title, author, 내용을 바꾸면 됩니다.

마크다운 문서 작성이 끝나면 작성한 파일을 repository에 반영해야 합니다. 그러기 위해서 git add, git status, git commit 명령어를 사용합니다.

git add 파일명

git status

git commit -m “설명”

git push

git 간편 안내서를 참고하시면 도움이 될 것입니다.

3. 작성한 문서 확인하기

alt text

브라우저를 새로 고침하면 작성한 문서를 확인할 수 있습니다.

변경 사항이 반영되는데 시간이 걸릴 때가 있습니다. 이럴 땐 잠시 후 다시 새로 고침을 하면 변경된 내용을 확인할 수 있습니다.