Github Flow④ 일반적인 GIT 작업흐름

박제욱·2024년 3월 8일
0

Git, GitHub, GitHub Flow

목록 보기
39/50
post-thumbnail

사진 출처 : https://namu.wiki/w/GitHub

일반적인 GIT 작업흐름

  • main) git pull origin main
    -> 내 로컬의 main 브랜치 최신화함.

  • main) 작업 -> 코드 작성 등

  • main) git add . && git commit -m "작업한 내용 간단 표시"
    -> 추가, 커밋

  • main) git push origin main
    -> 푸쉬

0개의 댓글