How to manage github files with VS Code

Basic code updates

Github
Author

Jeong-Ho SEO

Published

May 4, 2026

Modified

May 4, 2026

1 Use Repository Alone

# 1. 클론
git clone "URL"

# 2. 수정 후 추가
git add .

# 3. 기록
git commit -m "message"

# 4. 업로드
git push origin main

2 Use Repository Together