Skip to content

Commit 5d23ae8

Browse files
committed
1
1 parent 91c0c83 commit 5d23ae8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

web/git/page.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,31 @@ <h1>자주사용하는 git 명령</h1>
6969
</ul>
7070

7171

72+
<p>
73+
새 저장소의 초기화
74+
</p>
75+
<ul>
76+
<li>
77+
.git 폴더 삭제
78+
</li>
79+
<li>
80+
git init
81+
</li>
82+
<li>
83+
git add -all
84+
</li>
85+
<li>
86+
git commit -m "init"
87+
</li>
88+
<li>
89+
git remote add origin https://github.com/code1009/{저장소이름}.git
90+
</li>
91+
<li>
92+
git push -f origin master
93+
</li>
94+
</ul>
95+
96+
7297
</div>
7398
</body>
7499
</html>

0 commit comments

Comments
 (0)