[Git] 1. Github 업로드 맛보기

문정준's avatar
Mar 19, 2025
[Git] 1. Github 업로드 맛보기
 

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

git init git add . git commit -m "view complete"
 

2. Github 저장소 만들기

notion image
 
notion image
 
notion image
 

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

git remote add origin https://github.com/Sxias/storev1.git
 

4. 연결 확인

git remote -v
notion image
 

5. 업로드

git push origin master
 
  • 처음 실행 시 로그인 화면
notion image
 
  • 로그인 완료 후, 콘솔에서 출력
notion image
 

6. 자격 증명 확인하기

  • 검색에 자격 입력 : 자격 증명 관리자 열기
notion image
 
  • Windows 자격 증명 클릭
notion image
notion image
 
Share article

sxias