본문 바로가기
GitHub

[GitHub] terminal에서 git 실행하기 - 재커밋 후 기록

by SooooooooS 2023. 3. 21.
728x90

1. git을 사용할 폴더 경로로 터미널 열기

2. git status를 통해 변경사항 확인하기

git status 확인 화면

빨간색으로 표현된 것은 아직 add를 하지 않았다는 표시

3. git add 해주기

파일 하나씩 실행하기 위해 git add "file name" 으로 실행

git add 해준 후 git 상태

초록색 - commit 준비 완료

빨간색 - add도 된 상태가 아님 = commit할 수 없음

4. Commit

git commit -m "python example - stack"

 

add된 파일만 commit되었다.

5. Push

git push -u origin main

728x90

'GitHub' 카테고리의 다른 글

[GitHub] terminal에서 git 실행하기 - first commit 기록  (0) 2023.03.20
[GitHub] 프로필 뱃지  (0) 2023.02.28