<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.9.0">Jekyll</generator><link href="https://lko0901.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://lko0901.github.io/" rel="alternate" type="text/html" /><updated>2022-03-28T00:46:52+00:00</updated><id>https://lko0901.github.io/feed.xml</id><title type="html">오늘의 일기</title><subtitle>my diary from today for tommorow</subtitle><author><name>kiuklee</name></author><entry><title type="html">jekyll로 블로그 만들기 feat. github pages</title><link href="https://lko0901.github.io/etc/jekyll%EB%A1%9C_%EB%B8%94%EB%A1%9C%EA%B7%B8_%EB%A7%8C%EB%93%A4%EA%B8%B0/" rel="alternate" type="text/html" title="jekyll로 블로그 만들기 feat. github pages" /><published>2020-01-03T07:04:00+00:00</published><updated>2020-01-03T07:04:00+00:00</updated><id>https://lko0901.github.io/etc/jekyll%EB%A1%9C_%EB%B8%94%EB%A1%9C%EA%B7%B8_%EB%A7%8C%EB%93%A4%EA%B8%B0</id><content type="html" xml:base="https://lko0901.github.io/etc/jekyll%EB%A1%9C_%EB%B8%94%EB%A1%9C%EA%B7%B8_%EB%A7%8C%EB%93%A4%EA%B8%B0/">&lt;h2 id=&quot;repo-만들기&quot;&gt;repo 만들기&lt;/h2&gt;
&lt;p&gt;repository를 만들어 줍니다
&lt;img src=&quot;/assets/images/2019-01-03/200103180822.png&quot; alt=&quot;repo 만들기&quot; /&gt;
여기서 주의하실 점은 {username}.github.io와 같이 내 username과 동일하게 입력하셔야 한다는거!&lt;/p&gt;

&lt;h2 id=&quot;소스-올리기&quot;&gt;소스 올리기&lt;/h2&gt;
&lt;div class=&quot;language-shell highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;// 내 repo 클론
&lt;span class=&quot;c&quot;&gt;# git clone {내가 만든 repo url}&lt;/span&gt;

// 남의 repo 클론
&lt;span class=&quot;c&quot;&gt;# git clone https://github.com/mmistakes/minimal-mistakes.git&lt;/span&gt;

// 씨잘데기 없는 걸 지워줍니다
&lt;span class=&quot;c&quot;&gt;# cd minima-mistakes&lt;/span&gt;
&lt;span class=&quot;c&quot;&gt;# rm -rf .editorconfig .gitattributes .github /docs /test CHANGELOG.mdminimal-mistakes-jekyll.gemspec README.md screenshot-layouts.png screenshot.png&lt;/span&gt;

// 내 repo로 복사해줍니다
&lt;span class=&quot;c&quot;&gt;# cp -R * ../{내가 만든 repo 폴더}&lt;/span&gt;

// 내가 만든 repo 폴더로 이동해서 정적페이지를 만들고 push 해봅시다
&lt;span class=&quot;c&quot;&gt;# cd {내가 만든 repo 폴더}&lt;/span&gt;

// bundler가 없다면 설치 후 실행
&lt;span class=&quot;c&quot;&gt;# bundle exec jekyll build&lt;/span&gt;

// repo에 push
&lt;span class=&quot;c&quot;&gt;# git add *&lt;/span&gt;
&lt;span class=&quot;c&quot;&gt;# git commit -m &quot;init&quot;&lt;/span&gt;
&lt;span class=&quot;c&quot;&gt;# git push -u origin master&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;잠깐의 시간이 흐른 뒤, repo name과 동일한 url로 접속해봅시다!&lt;/p&gt;

&lt;h2 id=&quot;페이지-만들기&quot;&gt;페이지 만들기&lt;/h2&gt;
&lt;p&gt;프로젝트 폴더에 _pages 폴더를 만들고, 새로운 md 파일 생성&lt;/p&gt;
&lt;div class=&quot;language-markdown highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;p&quot;&gt;
---&lt;/span&gt;
title: about
layout: single
&lt;span class=&quot;gh&quot;&gt;permalink: /about
---
&lt;/span&gt;&lt;span class=&quot;gu&quot;&gt;## about&lt;/span&gt;
내용

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;만들어진 파일을 origin에 push하면 ‘https://{username}.github.io/about’로 접근할 수 있는 페이지가 됩니다!&lt;/p&gt;

&lt;h2 id=&quot;posts-작성하기&quot;&gt;posts 작성하기&lt;/h2&gt;
&lt;p&gt;프로젝트 폴더에 ‘_posts’폴더를 만들고, 새로운 md 파일 생성&lt;br /&gt;
파일명은 년-월-일-제목.md로 생성해야 합니다&lt;/p&gt;
&lt;div class=&quot;language-markdown highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;p&quot;&gt;
---&lt;/span&gt;
title: 제목
layout: single
date: 2019-01-03 16:04:00 +0900
&lt;span class=&quot;gh&quot;&gt;categories: {글에 해당하는 카테고리}
---
&lt;/span&gt;
&lt;span class=&quot;gu&quot;&gt;## 글작성!&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;만들어진 파일을 origin에 push하면 ‘https://{username}.github.io/{카테고리}/{글제목}’로 접근할 수 있는 게시물이 됩니다!&lt;/p&gt;</content><author><name>Kiuk Lee</name><email>lko09001@gmail.com</email></author><category term="etc" /><summary type="html">repo 만들기 repository를 만들어 줍니다 여기서 주의하실 점은 {username}.github.io와 같이 내 username과 동일하게 입력하셔야 한다는거!</summary></entry></feed>