728x90
λ³κ²½ μν νμΈνκΈ°
$ git status
λͺ¨λ λ³κ²½μ¬ν μ€ν μ΄μ§ (μ격μ μ₯μμ μ λ‘λ)
$ git add .
μ€ν μ΄μ§ μ·¨μ (add μ·¨μ)
$ git reset HEAD νμΌλͺ
.js
μ»€λ° (μ€ν μ΄μ§λ λ³κ²½μ¬νμ λ‘컬μ μ₯μμ μ λ‘λ)
$ git commit -m "my commit"
κ°μ₯ μ΅κ·Ό 컀λ°μ μ·¨μνκΈ°
$ git reset HEAD^
μ»€λ° λ©μμ§ μμ
$ git commit --amend -m "λ©μμ§ μμ "
νΈμ (λ‘컬μ μ₯μ λ΄μ©μ κΉνλΈμ μ λ‘λ)
$ git push origin main(or master or branch name...)
ν (κΉνλΈ λ΄μ© λ€μ΄λ‘λ λ°κΈ°)
$ git pull origin main(or master or branch name...)
(git add μ ) μμ ν νμΌ λλ리기
$ git checkout -- file.txt
(git add μ ) μμ λ΄μ© λͺ¨λ λλ리기
$ git restore .
νμΌ μ΄λ¦ λ³κ²½νκΈ°
$ git mv file_old.c file_new.c
Remote μ μ₯μ λͺ©λ‘ νμΈ
$ git remote -v
νμΌ μΆκ°
$ vi hello.txt
μμ£Ό μ°μ΄λ κΉνλΈ λͺ λ Ήμ΄λ₯Ό μ 리ν΄λ³΄μμ΅λλ€.
μλ λ§ν¬λ₯Ό μ°Έκ³ ν΄λ μ’μ κ² κ°μ
https://wikidocs.net/book/4088
728x90