본문 바로가기

TIL (Today I Learned)/Git & Github

[Git MacOS] git status

728x90

git status

  • 변경된 사항이 있다면 modified
    스크린샷 2021-09-19 오전 12 14 36

git stage

  • Modified된 파일이 있다면 stage 할 수 있다.
  • git add .
    스크린샷 2021-09-19 오전 12 21 21
  • git commit -m "Pyton"
  • git push origin
    스크린샷 2021-09-19 오전 12 22 53

결과화면

스크린샷 2021-09-19 오전 12 23 35

'TIL (Today I Learned) > Git & Github' 카테고리의 다른 글

[MacOS] IntelliJ Github연동  (0) 2021.11.30
[Git, macOS] terminal로 pull push 해보기  (0) 2021.09.16
[Github] Create draft pull request  (0) 2021.09.04
[Git] Git & Github  (0) 2021.08.25
[Github] pull request 방법  (0) 2021.07.31