매일 1%씩, 개발자로 성장하기

[VS Code] Github add / commit / push 본문

GIT

[VS Code] Github add / commit / push

할미개발 2023. 1. 14. 22:14
728x90

1. add 

git add .

2. commit  

git commit -m "커밋 코멘트 입력"

3. push

git push "SSH repository 주소 혹은 원격 저장소명"
-- git push origin

-- 보통 원격저장소명은 origin인데 git remote 명령어를 입력해보면 정확하게 알 수 있다.

728x90
Comments