[git]2.github 업로드 맛보기

손영민's avatar
Apr 14, 2025
[git]2.github 업로드 맛보기

1.소스코드 관리하기(해당 폴더로 이동해서)

git init git add . git commit -m "view complete"
 
 
git add . git commit -m "view complete" git push origin master //수정한 파일 업로드

2. 깃헙 저장소 만들기

 
notion image
 
 
 
 
 

3. 저장소 내컴퓨터에 연결하기

 
storev1
son7571Updated Mar 27, 2025
notion image
git remote add origin https://github.com/son7571/storev1.git
 

4. 연결된것 확인하기

git remote -v
notion image
 
 

5. 업로드 하기

git push origin master
notion image
 
notion image
 

6. 자격증명 확인하기

notion image
notion image
notion image
 
Share article

sson17