(예: 버전 릴리즈)
현재 버전에 tag 달기
= git tag <tagname>
특정 버전에 tag 달기
= git tag <tagname> <commithash>
= git log
tag를 remote repository에 push
= git push origin <tagname>
예) tag를 remote repository에 push
= tag_project% git push origin v0.3
remote repository - tag 페이지에서 확인가능
= git tag
= git show <tagname>
= git tag --delete <tagname>
= git push --delete origin <tagname>
This is H1
==========
This is H2
-----------
#This is H1
##This is H2
###This is H3
####This is H4
#####This is H5
######This is H6
> This is a first blockquote.
> > This is a second blockquote.
> > > This is a third blockquote.
블럭 내에서 다른 markdown 요소를 포함할 수 있음
> This is H3
> * List
>
내림차순으로 자동 정렬됨
1. 첫번째
2. 두번째
3. 세번째
내림차순으로 자동 정렬됨
혼용해도 같은 결과로 나타남
+ 빨강
+ 초록
+ 파랑
* 빨강
- 초록
+ 파랑
<pre><code>{code}</code></pre>
예)
<pre><code>print('this is readme file.')</code></pre>
* pre를 빼면 코드불럭이 끝까지 안 가고 text에서 끊김
```{code}```
예)
```print('this is readme file.')```
* * *
***
*****
- - -
--------------
Link: [Google](http://google.com, "google link")
또는
* 외부링크: <http://google.com>
* *single asterisks*
* _single undersores_
* **double asterisks**
* __double undersores__
* ~~cancleline~~
이미지가 어딘가 업로드돼있어야 함
![Alt text](/path/to/img.jpg "Optional title)
remote에 있는 README파일을 LOCAL로 다운받을 수 있음
= cat README.md
= git pull origin master