Remote Repository ์์ฑ
Remote Repository ์ฃผ์ ๋ณต์ฌ
Local Repository ๋ณต์ฌ : git_ws ํด๋ ํ์
git clone https://zoe-0314:<token>@github.com/zoe-0314/tag_project.git
ls
cd tag_project
cat > hello.txt
hello,world.
ctrl + d
cat hello.txt
git add hello.txt
git commit -m 'commit 1' hello.txt
cat > hello.txt
hello,noma.
ctrl + d
cat hello.txt
git add hello.txt
git commit -m 'commit 2' hello.txt
cat > hello.txt
hello,zerobase.
ctrl + d
cat hello.txt
git add hello.txt
git commit -m 'commit 3' hello.txt
git push origin main
Tag : ํน์ ๋ฒ์ (Commit)์ Tag๋ฅผ ๋ฌ์๋์ ํ์๊ฐ ์์ ๋ ์ฌ์ฉ (์ - ๋ฒ์ ๋ฆด๋ฆฌ์ค)
Git Tag ์์ฑ : ํ์ฌ ๋ฒ์ ์ Tag ๋ฌ๊ธฐ
git tag <tagname>
git tag v0.3
git log
git tag <tagname> <commithash>
git tag v0.2 48ef5338404cd67aefec4281a366b9737a0f4e3f
git log
git push origin <tagname>
git push origin v0.3
git tag
git tag
git show <tagname>
git show v0.3
git show v0.2
git tag --delete <tagname>
git tag --delete v0.3
git tag
git push --delete origin <tagname>
git push --delete origin v0.3
git tag --delete v0.2
git tag v0.3
git tag v0.2 48ef5338404cd67aefec4281a366b9737a0f4e3f
git tag v0.1 0e25a994b78fae0b11bd6c113d2f7e325a0cf419
git push origin v0.1
git push origin v0.2
git push origin v0.3
git push --delete origin v0.1
git tag --delete v0.1
git push --delete origin v0.2
git tag --delete v0.2
git push --delete origin v0.3
git tag --delete v0.3
์ค์ต (Markdown) GitHub ์์ README ํ์ผ ์์ ์ ์ ํ
์ค์ต (Markdown) ํ์ผ ์์ ํ Commit
# This is H1
## This is H2
### This is H3
#### This is H4
##### This is H5
###### This is H6
> This is a first blockqute
>> This is a second blockqute
>>> This is a third blockqute
This is a first blockqute
This is a second blockqute
This is a third blockqute
> ### This is H3
> * List
>
This is H3
- List
1. ์ฒซ๋ฒ์งธ
2. ๋๋ฒ์งธ
3. ์ธ๋ฒ์งธ
* ๋นจ๊ฐ
* ๋
น์
* ํ๋
+ ๋นจ๊ฐ
+ ๋
น์
+ ํ๋
- ๋นจ๊ฐ
- ๋
น์
- ํ๋
* 1๋จ๊ณ
- 2๋จ๊ณ
+ 3๋จ๊ณ
<pre><code>{code}</code></pre>
{code}
){code}
* * *
***
*****
- - -
-----
link : [Google](https://goole.com, "google link")
link : Google
* ์ธ๋ถ๋งํฌ : <https://github.com>
* ์ด๋ฉ์ผ๋งํฌ : <zerobase.git@gmail.com>
* *single asterisks*
* _single underscores_
* **double asterisks**
* __double underscores__
* ~~cancleline~~


git pull origin main
cat README.md
์์ํ๋ค..์ด๋ ต..
๐ป ์ถ์ฒ : ์ ๋ก๋ฒ ์ด์ค ๋ฐ์ดํฐ ์ทจ์ ์ค์ฟจ