kernel : ํ๋์จ์์ ์ํํธ์จ์ด๋ฅผ ์ด์ด์ฃผ๋ ์์คํ ์ํํธ์จ์ด
shell : kernel๊ณผ ์ฌ์ฉ์๋ฅผ ์ด์ด์ฃผ๋ ์ํํธ์จ์ด
CLI shell command
- / : ์ต์์ํด๋
- .. : ์์ํด๋
- . :ํ์ฌํด๋
- cd : ํ์ฌ์์น ์ด๋
- mkdit : ๋๋ ํ ๋ฆฌ ์์ฑ
- pwd : ํ์ฌ๋๋ ํ ๋ฆฌ๋ฅผ ์ ๋๊ฒฝ๋ก๋ก ํ์
- touch : text ๊ธฐ๋ฐ์ ํ์ผ ์์ฑ
- mv [ํ์ผ๋ช ] [๋ณ๊ฒฝํ ์์น๋ช ] : ํ์ผ์ ์์น ๋ณ๊ฒฝ
- rm : ํ์ผ์ญ์
- cp [๋ณต์ฌํ ํ์ผ๋ช ] [๋ณต์ฌ๋ํ์ผ๋ช ] : ํ์ผ ๋ณต์ฌ
vim command
: ํ ์คํธ ํธ์ง๊ธฐ
insert mode: press i on normal mode
visual mode: press v on normal mode
command mode: press shift + ; on normal mode
#How to go back to normal mode
just press escape key
Mark Down
<!-- ์ฃผ์ํ๊ธฐ -->
<!-- ์ ๋ชฉ ํ ์คํธ -->
# h1
## h2
### h3
#### h4
##### h5
###### h6
<!-- ์์ ์๋ ๋ฆฌ์คํธ(- * + ํผ์ฉ ๊ฐ๋ฅ) -->
- Item1
- Item1-1
- Item1-1-1
* Item2
+ Item3
<!-- ์์ ์๋ ๋ฆฌ์คํธ -->
1. Item1
2. Item2
<!-- ํ์ดํผ๋งํฌ -->
[๋งํฌ ํ ์คํธ](๋งํฌ URL)
<!-- ์ด๋ฏธ์ง -->

<!-- ๊ฐ์กฐ ํ๊ธฐ -->
*Italic*
**Bold**
~Line Break~
_Single underscore_
*Italic*
**Bold**
~Line Break~
_Single underscore_
<!-- ์ธ์ฉ๋ฌธ(Blockquote) -->
> ์ธ์ฉํ ๋ฌธ์ฅ
<!-- Code ์ ๋ ฅ(๋ฌธ์ฅ ๋ด) -->
This is how `code` works.
<!-- Code ์ ๋ ฅ(๋ธ๋ก) -->
` ``` `
def say_hello():
return "hello"
` ``` `
<!-- ์ํ์ -->
Page 1
***
Page 2
-----
Page 3
K-Digital Training ํํ ํฌ ์๋น์ค ๋ฐฑ์๋ ๊ฐ๋ฐ, Wooyoung Choi, 2022
command mode
:q : ์ข ๋ฃ
:q! : ์ ์ฅํ์ง ์๊ณ ์ข ๋ฃ
:w :์ ์ฅ
:wq : ์ ์ฅํ๊ณ ์ข ๋ฃ
git
set configuration
$ git config --global user.name "{github username}"
$ git config --global user.email "{github email address}"
$ git config --global core.editor "vim"
$ git config --global core.pager "cat"
$ git config --list
$ git config --global --unset user.name //์ค์ ํด์
๋ฐ์ํ
'๐ TIL' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[220406]CSS ์์ฑ (0) | 2022.04.06 |
---|---|
[220403] ๊ธฐ๋ณธ ๊ฐ์ / ํน์๋ฌธ์ (0) | 2022.04.05 |
[220401] git restore / reset / commit --amend (0) | 2022.04.02 |
[220330] git-flow (1) | 2022.04.01 |
[220329] Commit Convention (0) | 2022.03.29 |