git & github simple flow

여리·2023년 2월 7일
0

Git & Githun Flow

Git hub - repository

  1. Git clone
    • clone을 사용하는 경우에는 init을 하지 않아도 된다.(.git에 대한 정보를 모두 불러오기때문)
  2. Main 브랜치 - git pull origin main[brach가 main에 있는 작업내용을 땡겨온다는 개념]
  3. 작업브랜치 생성 - git branch {이름}
  4. 작업브랜치 이동 - git checkout {이름} (작업할 브랜치 설정)
  5. 작업실시
  6. 작업내용 staging -> git add {. || /filename}
  7. 커밋
    1. Git commit -m ”message”
    2. Git commit
  8. Push - git push origin {branch이름} ➡️ PR(pull request)작성[main이 branch를 땡겨간다는 개념]

5~7 cycle 반복

✅ 7번의 과정이 끝나면 다시 2번의 과정으로 돌아가서 다시 main 브랜치를 사용한다.

profile
beckend developer

0개의 댓글