<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>프로젝트 저장소</title>
    <link>https://tronic.tistory.com/</link>
    <description>이곳은 내 인터넷 즐겨찾기용 블로그임</description>
    <language>ko</language>
    <pubDate>Wed, 20 May 2026 08:01:59 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>모래반지빵냐빵냐</managingEditor>
    <item>
      <title>Git - 수정한 것 되돌리기</title>
      <link>https://tronic.tistory.com/86</link>
      <description>&lt;p style=&quot;margin: 0px 0px 10px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;Git을 사용하다보면 수정한 내용을 되돌리고 싶을 경우가 간혹있다. GUI가 있는 Git 클라이언트의 경우엔 discard를 하면 되지만 command line interface에서는 어떻게 해야 할지 잘 모를때가 많다. 각 상황별로 수정 내역을 되돌리는 법을 알아보자.&lt;/p&gt;&lt;h3 id=&quot;1-git-add-명령을-하기-이전stage에-올리지-않은-경우&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 26px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;1. git add 명령을 하기 이전(stage에 올리지 않은 경우)&lt;/h3&gt;&lt;h4 id=&quot;11-repository-내-모든-수정-되돌리기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 22px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;1.1 repository 내 모든 수정 되돌리기&lt;/h4&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot; style=&quot;color: rgb(248, 248, 242);&quot;&gt;cd&lt;/span&gt; &lt;span class=&quot;o&quot; style=&quot;color: rgb(249, 38, 114);&quot;&gt;{&lt;/span&gt;repository_root_dir&lt;span class=&quot;o&quot; style=&quot;color: rgb(249, 38, 114);&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git checkout .
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h4 id=&quot;12-특정-폴더-아래의-모든-수정-되돌리기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 22px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;1.2 특정 폴더 아래의 모든 수정 되돌리기&lt;/h4&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git checkout &lt;span class=&quot;o&quot; style=&quot;color: rgb(249, 38, 114);&quot;&gt;{&lt;/span&gt;dir&lt;span class=&quot;o&quot; style=&quot;color: rgb(249, 38, 114);&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h4 id=&quot;13-특정-파일의-수정-되돌리기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 22px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;1.3 특정 파일의 수정 되돌리기&lt;/h4&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git checkout &lt;span class=&quot;o&quot; style=&quot;color: rgb(249, 38, 114);&quot;&gt;{&lt;/span&gt;file_name&lt;span class=&quot;o&quot; style=&quot;color: rgb(249, 38, 114);&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;2-git-add-명령으로-stage에-올린-경우&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 26px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;2. git add 명령으로 stage에 올린 경우&lt;/h3&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git reset
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;3-git-commit을-한-경우&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 26px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;3. git commit을 한 경우&lt;/h3&gt;&lt;h4 id=&quot;31-commit-내용을-없애고-이전-상태로-원복&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 22px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;3.1 commit 내용을 없애고 이전 상태로 원복&lt;/h4&gt;&lt;p style=&quot;margin: 0px 0px 10px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;master 브랜치의 마지막 커밋을 가리키던 HEAD를 그 이전으로 이동시켜서 commit 내용을 없앰&lt;/p&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git reset --hard HEAD^
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h4 id=&quot;32-commit은-취소하고-commit-했던-내용은-남기고-unstaged-상태로-만들기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 22px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;3.2 commit은 취소하고 commit 했던 내용은 남기고 unstaged 상태로 만들기&lt;/h4&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git reset HEAD^
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h4 id=&quot;33-commit은-취소하고-commit-했던-내용은-남기고-staged-상태로-만들기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 22px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;3.3 commit은 취소하고 commit 했던 내용은 남기고 staged 상태로 만들기&lt;/h4&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git reset --soft HEAD^
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;4-모든-untracked-파일들을-지우기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 26px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;4. 모든 untracked 파일들을 지우기&lt;/h3&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;git clean -fdx
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h3 id=&quot;5-git-push를-한-경우-remote-repository도-이전으로-되돌리기&quot; style=&quot;padding: 0px; margin: 20px 0px 10px; box-sizing: border-box; font-weight: normal; font-size: 26px; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; background-color: rgb(248, 248, 253);&quot;&gt;5. git push를 한 경우 remote repository도 이전으로 되돌리기&lt;/h3&gt;&lt;div class=&quot;language-bash highlighter-rouge&quot; style=&quot;padding: 0px; margin: 0px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Arial, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 16px; background-color: rgb(248, 248, 253);&quot;&gt;&lt;pre class=&quot;highlight&quot; style=&quot;margin-top: 12px; margin-bottom: 12px; padding: 8px 12px; word-wrap: break-word; white-space: pre-wrap; border-radius: 3px; background: rgb(39, 40, 34);&quot;&gt;&lt;code style=&quot;padding: 0px; margin: 0px; font-size: 13px; border-radius: 3px; color: rgb(209, 209, 201); border: none; font-family: Monaco, Menlo, &amp;quot;Microsoft YaHei Mono&amp;quot;, Consolas, &amp;quot;Courier New&amp;quot;, monospace, sans-serif;&quot;&gt;&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git reset HEAD^  &lt;span class=&quot;c&quot; style=&quot;color: rgb(117, 113, 94);&quot;&gt;#local repository에서 commit을 하나 되돌림&lt;/span&gt;
&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git commit -m &lt;span class=&quot;s2&quot; style=&quot;color: rgb(230, 219, 116);&quot;&gt;&quot;...&quot;&lt;/span&gt;  &lt;span class=&quot;c&quot; style=&quot;color: rgb(117, 113, 94);&quot;&gt;#되돌린 것으로 commit&lt;/span&gt;
&lt;span class=&quot;gp&quot;&gt;$ &lt;/span&gt;git push origin +master &lt;span class=&quot;c&quot; style=&quot;color: rgb(117, 113, 94);&quot;&gt;#remote repository를 강제로 revert&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/86</guid>
      <comments>https://tronic.tistory.com/86#entry86comment</comments>
      <pubDate>Fri, 26 Jan 2018 10:35:27 +0900</pubDate>
    </item>
    <item>
      <title>Qobject가 아닌 함수 QTimer사용법</title>
      <link>https://tronic.tistory.com/85</link>
      <description>&lt;pre class=&quot;lang-cpp prettyprint prettyprinted&quot; style=&quot;margin-top: 0px; margin-bottom: 1em; padding: 5px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, &amp;quot;Lucida Console&amp;quot;, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace, sans-serif; vertical-align: baseline; width: auto; max-height: 600px; overflow: auto; background-color: rgb(239, 240, 241); color: rgb(57, 51, 24); word-wrap: normal;&quot;&gt;&lt;code style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, &amp;quot;Lucida Console&amp;quot;, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace, sans-serif; vertical-align: baseline; white-space: inherit;&quot;&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;connect&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;&amp;amp;&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;renderTimer&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;&amp;amp;&lt;/span&gt;&lt;span class=&quot;typ&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(43, 145, 175);&quot;&gt;QTimer&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;timeout&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;[=](){&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;onTimerUpdate&lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;();}&lt;/span&gt;&lt;span class=&quot;pln&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt; &lt;/span&gt;&lt;span class=&quot;pun&quot; style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; vertical-align: baseline; color: rgb(48, 51, 54);&quot;&gt;);&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description>
      <category>QT/Tip</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/85</guid>
      <comments>https://tronic.tistory.com/85#entry85comment</comments>
      <pubDate>Thu, 11 Jan 2018 10:34:00 +0900</pubDate>
    </item>
    <item>
      <title>GitLab 공개키 등록하기</title>
      <link>https://tronic.tistory.com/77</link>
      <description>&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;이 문서는 GitLab에서 발급받은 SSH 공개키를 등록하는 절차에 대해서 가이드합니다. 물론 GitLab은 HTTP를 통한 Clone을 제공하고 있지만, 지속적인 로그인이 귀찮으신 분들은 SSH 공개키 등록을 통해 이를 방지할 수 있습니다.&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;SSH 공개키 발급은 다음 문서를 통해 확인하시기 바랍니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;ul style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;li&gt;&lt;span style=&quot;line-height: 1.5;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/5955&quot; target=&quot;_blank&quot; style=&quot;color: rgb(51, 51, 51); transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s;&quot;&gt;http://pseg.or.kr/pseg/infouse/5955&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;SSH 공개키와 개인키가 준비되었다면, 아래를 읽어보시고 GitLab 자신의 계정에 등록하시기 바랍니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;먼저 GitLab으로 로그인을 수행합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;프로젝트 화면이 나오는데 좌측 메뉴의 아랫부분의 Profile Setting 메뉴를 클릭합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/966/005/8bb1494f86e7b1b35c2240c027f8167f.png&quot; alt=&quot;gitlab01.png&quot; width=&quot;1261&quot; height=&quot;646&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; cursor: pointer;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;Profile Setting화면이 나타나면, 아래 그림처럼 좌측의 SSH Keys 버튼을 클릭하고 ADD SSH KEY 버튼을 클릭해줍니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/966/005/6174c22a47fb75b55eddf0ee63d7518b.png&quot; alt=&quot;gitlab02.png&quot; width=&quot;1261&quot; height=&quot;646&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; cursor: pointer;&quot;&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;이제 Add an SSH Key 화면이 나타나면, Key Text Area 영역에 발급받은 SSH 공개키를 입력합니다. 이때 주의할 점은 키는 엔터없이 한줄로 붙어있어야 합니다. 붙여넣기가 완료되었으면, Title을 입력하고 ADD KEY 버튼을 클릭합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/966/005/756378a8c5fe0f05673d4f3929b31d90.png&quot; alt=&quot;gitlab03.png&quot; width=&quot;1261&quot; height=&quot;646&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; cursor: pointer;&quot;&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;이렇게 작업 PC에 따라 SSH를 발급하고 여기에서 추가합니다.&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;font face=&quot;나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif&quot;&gt;&lt;span style=&quot;font-size: 12px;&quot;&gt;http://pseg.or.kr/pseg/?mid=infouse&amp;amp;search_target=tag&amp;amp;search_keyword=SSH&amp;amp;document_srl=5966&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/77</guid>
      <comments>https://tronic.tistory.com/77#entry77comment</comments>
      <pubDate>Thu, 2 Nov 2017 15:40:58 +0900</pubDate>
    </item>
    <item>
      <title>SVN 저장소를 Git으로 옮기는 방법</title>
      <link>https://tronic.tistory.com/76</link>
      <description>&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;기존 Subversion으로 관리하던 소스코드를 Git으로 관리하는 것이 대세이다. 이 게시물은 svn으로 관리하던 소스코드를 Git으로 옮기는 방법을 정리 한다.&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; text-align: center;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/?module=file&amp;amp;act=procFileDownload&amp;amp;file_srl=7835&amp;amp;sid=c9122f2cff1bca93fde8c1198c346e84&amp;amp;module_srl=244&quot; style=&quot;color: rgb(51, 51, 51); transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s;&quot;&gt;02-2.svg&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;b&gt;사전 준비:&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;- Subversion client 설치&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;- Git 설치&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;- SVN 사용자 목록 파일 생성 (예: authors.txt)&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&amp;nbsp; Terry Hwang&amp;lt;terry.hwang@curvc.com&amp;gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .&lt;/p&gt;&lt;h3 style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif;&quot;&gt;Step 1) SVN 저장소 클론&lt;/h3&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;b&gt;SVN repository가 &amp;nbsp;/trunk, /branches, /tags 로만 구성되었을 경우:&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;div id=&quot;highlighter_799338&quot; class=&quot;syntaxhighlighter  plain&quot; style=&quot;width: 675px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;&quot;&gt;&lt;div class=&quot;toolbar&quot; style=&quot;border-radius: 0px !important; background: rgb(108, 226, 108) !important; border: none !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: absolute !important; right: 1px !important; top: 1px !important; vertical-align: baseline !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 10px !important; min-height: auto !important; z-index: 10 !important; color: white !important;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/7834#&quot; class=&quot;toolbar_item command_help help&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; color: white !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 1px 0px 0px !important; position: static !important; right: auto !important; text-align: center !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; display: block !important;&quot;&gt;?&lt;/a&gt;&lt;/div&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 675px; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; line-height: 1.1em !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; min-height: auto !important;&quot;&gt;&lt;tbody style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;tr style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;td class=&quot;gutter&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 0.5em 0px 1em !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;1&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;code&quot; style=&quot;width: 647px; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;container&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: relative !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;&lt;code class=&quot;plain plain&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;git svn clone --stdlayout --authors-file=authors.txt&amp;nbsp; &amp;lt;svn-repo&amp;gt;/&amp;lt;project&amp;gt; &amp;lt;git-repo-name&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;예)&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;div id=&quot;highlighter_443378&quot; class=&quot;syntaxhighlighter  plain&quot; style=&quot;width: 675px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;&quot;&gt;&lt;div class=&quot;toolbar&quot; style=&quot;border-radius: 0px !important; background: rgb(108, 226, 108) !important; border: none !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: absolute !important; right: 1px !important; top: 1px !important; vertical-align: baseline !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 10px !important; min-height: auto !important; z-index: 10 !important; color: white !important;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/7834#&quot; class=&quot;toolbar_item command_help help&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; color: white !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 1px 0px 0px !important; position: static !important; right: auto !important; text-align: center !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; display: block !important;&quot;&gt;?&lt;/a&gt;&lt;/div&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 745px; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; line-height: 1.1em !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; min-height: auto !important;&quot;&gt;&lt;tbody style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;tr style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;td class=&quot;gutter&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 0.5em 0px 1em !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;1&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;code&quot; style=&quot;width: 717px; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;container&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: relative !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;&lt;code class=&quot;plain plain&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;git svn clone --stdlayout --authors-file=authors.txt &lt;a href=&quot;https://svn.atlassian.com/Confluence&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;https://svn.atlassian.com/Confluence&lt;/a&gt; ConfluenceAsGit&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;b&gt;SVN repository가 &amp;nbsp;특별한 branch로 구성되었을 경우:&lt;/b&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;div id=&quot;highlighter_24&quot; class=&quot;syntaxhighlighter  plain&quot; style=&quot;width: 675px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;&quot;&gt;&lt;div class=&quot;toolbar&quot; style=&quot;border-radius: 0px !important; background: rgb(108, 226, 108) !important; border: none !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: absolute !important; right: 1px !important; top: 1px !important; vertical-align: baseline !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 10px !important; min-height: auto !important; z-index: 10 !important; color: white !important;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/7834#&quot; class=&quot;toolbar_item command_help help&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; color: white !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 1px 0px 0px !important; position: static !important; right: auto !important; text-align: center !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; display: block !important;&quot;&gt;?&lt;/a&gt;&lt;/div&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 943px; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; line-height: 1.1em !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; min-height: auto !important;&quot;&gt;&lt;tbody style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;tr style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;td class=&quot;gutter&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 0.5em 0px 1em !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;1&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;code&quot; style=&quot;width: 915px; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;container&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: relative !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;&lt;code class=&quot;plain plain&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;git svn clone --trunk=/trunk --branches=/branches --branches=/bugfixes --authors-file=authors.txt&amp;nbsp; &amp;lt;svn-repo&amp;gt;/&amp;lt;project&amp;gt; &amp;lt;git-repo-name&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;예)&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;div id=&quot;highlighter_617724&quot; class=&quot;syntaxhighlighter  plain&quot; style=&quot;width: 675px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;&quot;&gt;&lt;div class=&quot;toolbar&quot; style=&quot;border-radius: 0px !important; background: rgb(108, 226, 108) !important; border: none !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: absolute !important; right: 1px !important; top: 1px !important; vertical-align: baseline !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 10px !important; min-height: auto !important; z-index: 10 !important; color: white !important;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/7834#&quot; class=&quot;toolbar_item command_help help&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; color: white !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 1px 0px 0px !important; position: static !important; right: auto !important; text-align: center !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; display: block !important;&quot;&gt;?&lt;/a&gt;&lt;/div&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 1042px; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; line-height: 1.1em !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; min-height: auto !important;&quot;&gt;&lt;tbody style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;tr style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;td class=&quot;gutter&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 0.5em 0px 1em !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;1&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;code&quot; style=&quot;width: 1014px; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;container&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: relative !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;&lt;code class=&quot;plain plain&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;git svn clone --trunk=/trunk --branches=/branches --branches=/bugfixes --authors-file=authors.txt &lt;a href=&quot;https://svn.atlassian.com/Confluence&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;https://svn.atlassian.com/Confluence&lt;/a&gt; ConfluenceAsGit&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;참고 사이트 =&amp;nbsp;&lt;a href=&quot;https://www.atlassian.com/git/tutorials/migrating-convert&quot; target=&quot;_blank&quot; style=&quot;color: rgb(51, 51, 51); transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s;&quot;&gt;https://www.atlassian.com/git/tutorials/migrating-convert&lt;/a&gt;&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/76</guid>
      <comments>https://tronic.tistory.com/76#entry76comment</comments>
      <pubDate>Thu, 2 Nov 2017 15:39:46 +0900</pubDate>
    </item>
    <item>
      <title>Git Bash로 SSH 공개키 발급하기</title>
      <link>https://tronic.tistory.com/75</link>
      <description>&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;Git 서버는 SSH 공개키로 인증을 합니다. 이러한 SSH를 발급하는 방식은 다양한데, 이 문서에서는 Git Bash를 이용하여 공개키를 발급하는 방법에 대해 설명합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;먼저 Git Bash를 실행합니다. 저는 Win8.1을 사용하고 있어, 앱에서 Git을 검색하였습니다. &amp;nbsp;Win7이하는 프로그램 파일에서 Git Bash를 선택합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/955/005/49772bedc4271e8b267c7abcd9e7c9e5.png&quot; alt=&quot;git01.png&quot; width=&quot;398&quot; height=&quot;232&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; cursor: pointer;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;Git Bash화면이 아래와 같이 나타납니다.&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/955/005/faa0b7bac42fb95b2fa172696336d6ed.png&quot; alt=&quot;git02.png&quot; width=&quot;677&quot; height=&quot;393&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; cursor: pointer;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;먼저 ssh-kegen 명령을 통해 Public 키와 Private 키 한쌍을 생성합니다.&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;div id=&quot;highlighter_993650&quot; class=&quot;syntaxhighlighter  plain&quot; style=&quot;width: 675px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;&quot;&gt;&lt;div class=&quot;toolbar&quot; style=&quot;border-radius: 0px !important; background: rgb(108, 226, 108) !important; border: none !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: absolute !important; right: 1px !important; top: 1px !important; vertical-align: baseline !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 10px !important; min-height: auto !important; z-index: 10 !important; color: white !important;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/5955#&quot; class=&quot;toolbar_item command_help help&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; color: white !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 1px 0px 0px !important; position: static !important; right: auto !important; text-align: center !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; display: block !important;&quot;&gt;?&lt;/a&gt;&lt;/div&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 675px; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; line-height: 1.1em !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; min-height: auto !important;&quot;&gt;&lt;tbody style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;tr style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;td class=&quot;gutter&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 0.5em 0px 1em !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;1&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;code&quot; style=&quot;width: 647px; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;container&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: relative !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;&lt;code class=&quot;plain plain&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;$ ssh-keygen&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;상위 명령어를 수행하면, 처음 저장할 위치를 묻습니다. Enter를 치면 .ssh에 저장됩니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;다음은 Password(passphrase) 이때 패스워드를 입력하지 않으면, Git 서버에 Push할때, 패스워드를 묻지 않습니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;그럼 아래 그림과 같이 SSH 키가 생성됩니다.&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/955/005/11689877a46fcc520745552b168de34d.png&quot; alt=&quot;git03.png&quot; width=&quot;677&quot; height=&quot;393&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; cursor: pointer;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;아래와 같이 해당 위치에 Public 키와 Private 키가 생성되었는지 확인합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/955/005/6569e11e94932851dd16910375390b2a.png&quot; alt=&quot;git04.png&quot; width=&quot;677&quot; height=&quot;393&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; cursor: pointer;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;생성이 확인되었다면, cat 명령을 통해 공개키 내용을 확인하고 해당 키를 Git Server 관리자에게 알려줍니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;혹은 사용하고있는 Gerrit 혹은 Gitlab에 등록합니다.&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;div style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;div id=&quot;highlighter_735766&quot; class=&quot;syntaxhighlighter  plain&quot; style=&quot;width: 675px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;&quot;&gt;&lt;div class=&quot;toolbar&quot; style=&quot;border-radius: 0px !important; background: rgb(108, 226, 108) !important; border: none !important; bottom: auto !important; float: none !important; height: 11px !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: absolute !important; right: 1px !important; top: 1px !important; vertical-align: baseline !important; width: 11px !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 10px !important; min-height: auto !important; z-index: 10 !important; color: white !important;&quot;&gt;&lt;a href=&quot;http://pseg.or.kr/pseg/infouse/5955#&quot; class=&quot;toolbar_item command_help help&quot; style=&quot;transition: border-color 0.4s, box-shadow 0.4s, background 0.4s, color 0.4s, opacity 0.4s; color: white !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 1px 0px 0px !important; position: static !important; right: auto !important; text-align: center !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; display: block !important;&quot;&gt;?&lt;/a&gt;&lt;/div&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width: 675px; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; line-height: 1.1em !important; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; min-height: auto !important;&quot;&gt;&lt;tbody style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;tr style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;td class=&quot;gutter&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important; color: rgb(175, 175, 175) !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 3px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 0.5em 0px 1em !important; position: static !important; right: auto !important; text-align: right !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;1&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;code&quot; style=&quot;width: 647px; border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;container&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: relative !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;&lt;div class=&quot;line number1 index0 alt2&quot; style=&quot;border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px 1em !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-size: 1em !important; min-height: auto !important; white-space: pre !important;&quot;&gt;&lt;code class=&quot;plain plain&quot; style=&quot;border-radius: 0px !important; background: none !important; border: 0px !important; bottom: auto !important; float: none !important; height: auto !important; left: auto !important; line-height: 1.1em !important; margin: 0px !important; outline: 0px !important; overflow: visible !important; padding: 0px !important; position: static !important; right: auto !important; top: auto !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace !important; font-size: 1em !important; min-height: auto !important;&quot;&gt;$ cat id_rsa.pub&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br style=&quot;font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://pseg.or.kr/pseg/files/attach/images/244/955/005/60fd04dbca05c26080bcce1b78b72ca5.png&quot; alt=&quot;git05.png&quot; width=&quot;677&quot; height=&quot;393&quot; rel=&quot;xe_gallery&quot; style=&quot;max-width: 100%; height: auto; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px; cursor: pointer;&quot;&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px; font-family: 나눔고딕, NanumGothic, NG, 돋움, Dotum, Arial, Helvetica, sans-serif; font-size: 12px;&quot;&gt;이상으로 Git Bash를 통해 SSH Public 키와 Private 키를 생성하는 방법을 알아보았습니다.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;http://pseg.or.kr/pseg/infouse/5955&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/75</guid>
      <comments>https://tronic.tistory.com/75#entry75comment</comments>
      <pubDate>Thu, 2 Nov 2017 15:38:58 +0900</pubDate>
    </item>
    <item>
      <title>Git 최초 설정</title>
      <link>https://tronic.tistory.com/74</link>
      <description>&lt;h2 style=&quot;margin: 20px 0px 0px; color: rgb(241, 78, 50); text-rendering: optimizeLegibility; font-size: 18px; line-height: 44px; font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;Git 최초 설정&lt;/h2&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;Git을 설치하고 나면 Git의 사용 환경을 적절하게 설정해 주어야 한다. 한 번만 설정하면 된다. 설정한 내용은 Git을 업그레이드해도 유지된다. 언제든지 다시 바꿀 수 있는 명령어가 있다.&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;'git config'라는 도구로 설정 내용을 확인하고 변경할 수 있다. Git은 이 설정에 따라 동작한다. 이때 사용하는 설정 파일은 세 가지나 된다.&lt;/p&gt;&lt;ul style=&quot;padding: 0px; margin: 0px 0px 11px 25px; list-style-position: initial; list-style-image: initial; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; font-size: 14px; background-color: rgb(252, 252, 250);&quot;&gt;&lt;li style=&quot;line-height: 22px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;/etc/gitconfig&lt;/code&gt;&amp;nbsp;파일: 시스템의 모든 사용자와 모든 저장소에 적용되는 설정이다.&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git config --system&lt;/code&gt;&amp;nbsp;옵션으로 이 파일을 읽고 쓸 수 있다.&lt;/li&gt;&lt;li style=&quot;line-height: 22px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;~/.gitconfig&lt;/code&gt;&amp;nbsp;파일: 특정 사용자에게만 적용되는 설정이다.&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git config --global&lt;/code&gt;&amp;nbsp;옵션으로 이 파일을 읽고 쓸 수 있다.&lt;/li&gt;&lt;li style=&quot;line-height: 22px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.git/config&lt;/code&gt;: 이 파일은 Git 디렉토리에 있고 특정 저장소(혹은 현재 작업 중인 프로젝트)에만 적용된다. 각 설정은 역순으로 우선시 된다. 그래서&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.git/config&lt;/code&gt;가&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;/etc/gitconfig&lt;/code&gt;보다 우선한다.&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;윈도용 Git은&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;$HOME&lt;/code&gt;&amp;nbsp;디렉토리(&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;%USERPROFILE%&lt;/code&gt;&amp;nbsp;환경변수)에 있는&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.gitconfig&lt;/code&gt;&amp;nbsp;파일을 찾는다. 보통&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;C:\Documents and Settings\$USER&lt;/code&gt;&amp;nbsp;또는&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;C:\Users\$USER&lt;/code&gt;&amp;nbsp;이다(윈도우에서는&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;$USER&lt;/code&gt;&amp;nbsp;대신&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;%USERNAME%&lt;/code&gt;를 사용한다). 그리고 msysGit도 /etc/gitconfig를 가지고 있다. 경로는 MSys 루트에 따른 상대 경로다. 인스톨러로 msysGit을 설치할 때 설치 경로를 선택할 수 있다.&lt;/p&gt;&lt;h3 id=&quot;사용자-정보&quot; style=&quot;margin: 0px; color: rgb(78, 68, 60); text-rendering: optimizeLegibility; line-height: 33px; font-size: 16px; font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;&lt;a href=&quot;https://git-scm.com/book/ko/v1/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%B5%9C%EC%B4%88-%EC%84%A4%EC%A0%95#사용자-정보&quot; style=&quot;background-color: transparent; color: rgb(3, 136, 166); transition-property: color; transition-duration: 0.3s;&quot;&gt;사용자 정보&lt;/a&gt;&lt;/h3&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;Git을 설치하고 나서 가장 먼저 해야 하는 것은 사용자 이름과 이메일 주소를 설정하는 것이다. Git은 커밋할 때마다 이 정보를 사용한다. 한 번 커밋한 후에는 정보를 변경할 수 없다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 14px; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git config --global user.name &quot;John Doe&quot;
$ git config --global user.email johndoe@example.com
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;다시 말하자면&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;--global&lt;/code&gt;&amp;nbsp;옵션으로 설정한 것은 딱 한 번만 하면 된다. 해당 시스템에서 해당 사용자가 사용할 때에는 이 정보를 사용한다. 만약 프로젝트마다 다른 이름과 이메일 주소를 사용하고 싶으면&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;--global&lt;/code&gt;&amp;nbsp;옵션을 빼고 명령을 실행한다.&lt;/p&gt;&lt;h3 id=&quot;편집기&quot; style=&quot;margin: 0px; color: rgb(78, 68, 60); text-rendering: optimizeLegibility; line-height: 33px; font-size: 16px; font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;&lt;a href=&quot;https://git-scm.com/book/ko/v1/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%B5%9C%EC%B4%88-%EC%84%A4%EC%A0%95#편집기&quot; style=&quot;background-color: transparent; color: rgb(3, 136, 166); transition-property: color; transition-duration: 0.3s;&quot;&gt;편집기&lt;/a&gt;&lt;/h3&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;사용자 정보를 설정하고 나면 Git에서 사용할 텍스트 편집기를 고른다. 기본적으로 Git은 시스템의 기본 편집기를 사용하고 보통 Vi나 Vim이다. 하지만, Emacs 같은 다른 텍스트 편집기를 사용할 수 있고 아래와 같이 실행하면 된다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 14px; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git config --global core.editor emacs
&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&quot;Diff-도구&quot; style=&quot;margin: 0px; color: rgb(78, 68, 60); text-rendering: optimizeLegibility; line-height: 33px; font-size: 16px; font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;&lt;a href=&quot;https://git-scm.com/book/ko/v1/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%B5%9C%EC%B4%88-%EC%84%A4%EC%A0%95#Diff-도구&quot; style=&quot;background-color: transparent; color: rgb(3, 136, 166); transition-property: color; transition-duration: 0.3s;&quot;&gt;Diff 도구&lt;/a&gt;&lt;/h3&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;Merge 충돌을 해결하기 위해 사용하는 Diff 도구를 설정할 수 있다. vimdiff를 사용하고 싶으면 아래와 같이 실행한다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 14px; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git config --global merge.tool vimdiff
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;이렇게 kdiff3, tkdiff, meld, xxdif, emerge, vimdiff, gvimdiff, ecmerge, opendiff를 사용할 수 있다. 물론 다른 도구도 사용할 수 있다. 자세한 내용은&amp;nbsp;&lt;em&gt;7장&lt;/em&gt;에서 다룬다.&lt;/p&gt;&lt;h3 id=&quot;설정-확인&quot; style=&quot;margin: 0px; color: rgb(78, 68, 60); text-rendering: optimizeLegibility; line-height: 33px; font-size: 16px; font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;&lt;a href=&quot;https://git-scm.com/book/ko/v1/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%B5%9C%EC%B4%88-%EC%84%A4%EC%A0%95#설정-확인&quot; style=&quot;background-color: transparent; color: rgb(3, 136, 166); transition-property: color; transition-duration: 0.3s;&quot;&gt;설정 확인&lt;/a&gt;&lt;/h3&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git config --list&lt;/code&gt;&amp;nbsp;명령을 실행하면 설정한 모든 것을 보여준다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 14px; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git config --list
user.name=Scott Chacon
user.email=schacon@gmail.com
color.status=auto
color.branch=auto
color.interactive=auto
color.diff=auto
...
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;Git은 같은 키를 여러 파일(&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;/etc/gitconfig&lt;/code&gt;와&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;~/.gitconfig&lt;/code&gt;&amp;nbsp;같은)에서 읽기 때문에 같은 키가 여러개 있을 수도 있다. 이러면 Git은 나중 값을 사용한다.&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 11px; font-size: 14px; line-height: 22px; color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; background-color: rgb(252, 252, 250);&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git config {key}&lt;/code&gt;&amp;nbsp;명령으로 Git이 특정 Key에 대해 어떤 값을 사용하는지 확인할 수 있다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 14px; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git config user.name
Scott Chacon&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;https://git-scm.com/book/ko/v1/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%B5%9C%EC%B4%88-%EC%84%A4%EC%A0%95&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/74</guid>
      <comments>https://tronic.tistory.com/74#entry74comment</comments>
      <pubDate>Thu, 2 Nov 2017 15:10:49 +0900</pubDate>
    </item>
    <item>
      <title>git 초기 환경설정</title>
      <link>https://tronic.tistory.com/73</link>
      <description>&lt;p style=&quot;color: rgb(123, 115, 102); font-family: 돋움, dotum, Tahoma, AppleGothic, sans-serif; font-size: 12px; background-color: rgb(196, 195, 201);&quot;&gt;&lt;span style=&quot;line-height: 18px;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &amp;quot;맑은 고딕&amp;quot;, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;- Git 환경 설정하기&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;color: rgb(123, 115, 102); font-family: 돋움, dotum, Tahoma, AppleGothic, sans-serif; font-size: 12px; background-color: rgb(196, 195, 201);&quot;&gt;&lt;span style=&quot;font-family: &amp;quot;맑은 고딕&amp;quot;, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;git config --global user.email &quot;이메일주소&quot;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family: &amp;quot;맑은 고딕&amp;quot;, sans-serif; background-color: rgb(255, 255, 255);&quot;&gt;git config --global user.name &quot;이름&quot;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;git remote -v&lt;/p&gt;&lt;p&gt;push origin 경로 확인&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;origin 삭제&lt;/p&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 1em; padding: 5px; border: 0px; font-variant-numeric: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, &amp;quot;Lucida Console&amp;quot;, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace, sans-serif; vertical-align: baseline; width: auto; max-height: 600px; overflow: auto; background-color: rgb(239, 240, 241); word-wrap: normal; color: rgb(36, 39, 41);&quot;&gt;&lt;code style=&quot;margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, &amp;quot;Lucida Console&amp;quot;, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;DejaVu Sans Mono&amp;quot;, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace, sans-serif; vertical-align: baseline; white-space: inherit;&quot;&gt;git remote rm origin &lt;/code&gt;&lt;/pre&gt;&lt;h1 style=&quot;font-size: 36px; margin: 0px 0px 0.4em; font-weight: normal; color: rgb(78, 68, 60); text-rendering: optimizeLegibility; line-height: 44px; font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif;&quot;&gt;2.1 Git의 기초 - Git 저장소 만들기&lt;/h1&gt;&lt;div style=&quot;color: rgb(78, 68, 60); font-family: Georgia, &amp;quot;Times New Roman&amp;quot;, serif; font-size: 14px;&quot;&gt;&lt;h2 style=&quot;margin: 20px 0px 0px; color: rgb(241, 78, 50); text-rendering: optimizeLegibility; font-size: 18px; line-height: 44px;&quot;&gt;Git 저장소 만들기&lt;/h2&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;Git 저장소를 만드는 방법은 두 가지다. 기존 프로젝트를 Git 저장소로 만드는 방법이 있고 다른 서버에 있는 저장소를 Clone하는 방법이 있다.&lt;/p&gt;&lt;h3 id=&quot;기존-디렉토리를-Git-저장소로-만들기&quot; style=&quot;margin: 0px; text-rendering: optimizeLegibility; line-height: 33px; font-size: 16px;&quot;&gt;&lt;a href=&quot;https://git-scm.com/book/ko/v1/Git%EC%9D%98-%EA%B8%B0%EC%B4%88-Git-%EC%A0%80%EC%9E%A5%EC%86%8C-%EB%A7%8C%EB%93%A4%EA%B8%B0#기존-디렉토리를-Git-저장소로-만들기&quot; style=&quot;background-color: transparent; color: rgb(3, 136, 166); transition-property: color; transition-duration: 0.3s;&quot;&gt;기존 디렉토리를 Git 저장소로 만들기&lt;/a&gt;&lt;/h3&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;기존 프로젝트를 Git으로 관리하고 싶을 때, 프로젝트의 디렉토리로 이동해서 아래과 같은 명령을 실행한다.&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 1em; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git init
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;이 명령은&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.git&lt;/code&gt;이라는 하위 디렉토리를 만든다.&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.git&lt;/code&gt;&amp;nbsp;디렉토리에는 저장소에 필요한 뼈대 파일(Skeleton)이 들어 있다(&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.git&lt;/code&gt;&amp;nbsp;디렉토리가 막 만들어진 직후에 어떤 파일이 있는지에 대한 내용은&amp;nbsp;&lt;em&gt;9장&lt;/em&gt;에서 다룬다). 이 명령만으로는 아직 프로젝트의 어떤 파일도 관리하지 않는다.&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;Git이 파일을 관리하게 하려면 저장소에 파일을 추가하고 커밋해야 한다.&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git add&lt;/code&gt;&amp;nbsp;명령으로 파일을 추가하고 커밋한다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 1em; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git add *.c
$ git add README
$ git commit -m 'initial project version'
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;매우 짧은 시간에 명령어를 몇개 실행해서 Git 저장소를 만들고 파일이 관리되게 했다.&lt;/p&gt;&lt;h3 id=&quot;기존-저장소를-Clone하기&quot; style=&quot;margin: 0px; text-rendering: optimizeLegibility; line-height: 33px; font-size: 16px;&quot;&gt;&lt;a href=&quot;https://git-scm.com/book/ko/v1/Git%EC%9D%98-%EA%B8%B0%EC%B4%88-Git-%EC%A0%80%EC%9E%A5%EC%86%8C-%EB%A7%8C%EB%93%A4%EA%B8%B0#기존-저장소를-Clone하기&quot; style=&quot;background-color: transparent; color: rgb(3, 136, 166); transition-property: color; transition-duration: 0.3s;&quot;&gt;기존 저장소를 Clone하기&lt;/a&gt;&lt;/h3&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;다른 프로젝트에 참여하거나(Contribute) Git 저장소를 복사하고 싶을 때&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git clone&lt;/code&gt;&amp;nbsp;명령을 사용한다. 이미 Subversion 같은 VCS에 익숙한 사용자에게는&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;checkout&lt;/code&gt;이 아니라&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;clone&lt;/code&gt;이라는 점이 도드라져 보일 것이다. Git이 Subversion과 다른 가장 큰 차이점은 서버에 있는 모든 데이터를 복사한다는 것이다.&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git clone&lt;/code&gt;을 실행하면 프로젝트 히스토리를 전부 받아온다. 실제로 서버의 디스크가 망가져도 클라이언트 저장소 중에서 아무거나 하나 가져다가 복구하면 된다(서버에만 적용했던 설정은 복구하지 못하지만 모든 데이터는 복구된다 -&amp;nbsp;&lt;em&gt;4장&lt;/em&gt;에서 좀 더 자세히 다룬다).&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git clone [url]&lt;/code&gt;&amp;nbsp;명령으로 저장소를 Clone한다. Ruby용 Git 라이브러리인 Grit을 Clone하려면 아래과 같이 실행한다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 1em; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git clone git://github.com/schacon/grit.git
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;이 명령은 &quot;grit&quot;이라는 디렉토리를 만들고 그 안에&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;.git&lt;/code&gt;&amp;nbsp;디렉토리를 만든다. 그리고 저장소의 데이터를 모두 가져와서 자동으로 가장 최신 버전을 Checkout해 놓는다.&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;grit&lt;/code&gt;&amp;nbsp;디렉토리로 이동하면 Checkout으로 생성한 파일을 볼 수 있고 당장 하고자 하는 일을 시작할 수 있다. 아래과 같은 명령을 사용하여 저장소를 Clone하면 &quot;grit&quot;이 아니라 다른 디렉토리 이름으로 Clone할 수 있다:&lt;/p&gt;&lt;pre style=&quot;overflow: auto; font-family: Courier, monospace; font-size: 1em; border-radius: 3px; padding: 10px 15px 13px; margin-bottom: 1em; background-color: rgb(255, 255, 255); border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px;&quot;&gt;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: block; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); line-height: 18px; overflow: auto;&quot;&gt;$ git clone git://github.com/schacon/grit.git mygrit
&lt;/code&gt;&lt;/pre&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;디렉토리 이름이&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;mygrit&lt;/code&gt;이라는 것만 빼면 이 명령의 결과와 앞선 명령의 결과는 같다.&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 11px; line-height: 22px;&quot;&gt;Git은 다양한 프로토콜을 지원한다. 이제까지는&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;git://&lt;/code&gt;&amp;nbsp;프로토콜을 사용했지만&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;http(s)://&lt;/code&gt;를 사용할 수도 있고&amp;nbsp;&lt;code style=&quot;font-family: Courier, monospace; font-size: 1em; border-radius: 3px; display: inline; padding: 1px; margin-bottom: 1em; border: 1px solid rgb(239, 238, 230); color: rgb(241, 78, 50); line-height: 18px; overflow: auto;&quot;&gt;user@server:/path.git&lt;/code&gt;처럼 SSH 프로토콜을 사용할 수도 있다. 자세한 내용은&amp;nbsp;&lt;em&gt;4장&lt;/em&gt;에서 다룬다.&amp;nbsp;&lt;em&gt;4장&lt;/em&gt;에서는 각 프로토콜의 장단점과 Git 저장소에 접근하는 방법을 설명한다.&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(123, 115, 102); font-family: 돋움, dotum, Tahoma, AppleGothic, sans-serif; font-size: 12px; background-color: rgb(255, 255, 255);&quot;&gt;출처:&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://newsight.tistory.com/25&quot; style=&quot;color: rgb(123, 115, 102); cursor: pointer; font-family: 돋움, dotum, Tahoma, AppleGothic, sans-serif; font-size: 12px; background-color: rgb(196, 195, 201);&quot;&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot;&gt;http://newsight.tistory.com/25&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;color: rgb(123, 115, 102); font-family: 돋움, dotum, Tahoma, AppleGothic, sans-serif; font-size: 12px; background-color: rgb(255, 255, 255);&quot;&gt;&amp;nbsp;[New Sight]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255); font-size: 12px;&quot;&gt;&lt;font color=&quot;#7b7366&quot; face=&quot;돋움, dotum, Tahoma, AppleGothic, sans-serif&quot;&gt;https://git-scm.com/book/ko/v1/Git%EC%9D%98-%EA%B8%B0%EC%B4%88-Git-%EC%A0%80%EC%9E%A5%EC%86%8C-%EB%A7%8C%EB%93%A4%EA%B8%B0&lt;/font&gt;&lt;/span&gt;&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/73</guid>
      <comments>https://tronic.tistory.com/73#entry73comment</comments>
      <pubDate>Tue, 17 Oct 2017 10:28:14 +0900</pubDate>
    </item>
    <item>
      <title>git 관련 한글레퍼런스</title>
      <link>https://tronic.tistory.com/72</link>
      <description>&lt;p&gt;꼭 읽어볼것&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;https://git-scm.com/book/ko/v2/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-%EB%B2%84%EC%A0%84-%EA%B4%80%EB%A6%AC%EB%9E%80%3F&lt;/p&gt;</description>
      <category>GitLab</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/72</guid>
      <comments>https://tronic.tistory.com/72#entry72comment</comments>
      <pubDate>Tue, 17 Oct 2017 10:27:25 +0900</pubDate>
    </item>
    <item>
      <title>Visual studio에서 F7로 빌드가 안될때</title>
      <link>https://tronic.tistory.com/71</link>
      <description>&lt;p&gt;https://stackoverflow.com/questions/24075311/build-with-f7-shortcut-not-available-vs-2012&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;위에 나온거처럼&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;ctrl + Shift + B (buildsolution) 키를&amp;nbsp; F7로바꿔주면 기존처럼 쓸수있다&lt;/p&gt;</description>
      <category>VisualStudio</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/71</guid>
      <comments>https://tronic.tistory.com/71#entry71comment</comments>
      <pubDate>Tue, 10 Oct 2017 15:09:14 +0900</pubDate>
    </item>
    <item>
      <title>Visual stuio bookmark</title>
      <link>https://tronic.tistory.com/70</link>
      <description>&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(100, 100, 100); font-family: &amp;quot;Malgun Gothic&amp;quot;, Raleway, sans-serif; font-size: 15px; background-color: rgb(255, 255, 255);&quot;&gt;책갈피 지정/해제는 원하는 라인에서&amp;nbsp;Ctrl+F2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(100, 100, 100); font-family: &amp;quot;Malgun Gothic&amp;quot;, Raleway, sans-serif; font-size: 15px; background-color: rgb(255, 255, 255);&quot;&gt;책갈피간 이동은 F2&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(100, 100, 100); font-family: &amp;quot;Malgun Gothic&amp;quot;, Raleway, sans-serif; font-size: 15px; background-color: rgb(255, 255, 255);&quot;&gt;책갈피 전체 삭제는 Ctrl+Shift+F2&lt;/span&gt;&lt;/p&gt;</description>
      <category>Tip</category>
      <author>모래반지빵냐빵냐</author>
      <guid isPermaLink="true">https://tronic.tistory.com/70</guid>
      <comments>https://tronic.tistory.com/70#entry70comment</comments>
      <pubDate>Fri, 29 Sep 2017 16:16:11 +0900</pubDate>
    </item>
  </channel>
</rss>