✨ Git

Branch 컨벤션

기본적인 git flow방식


  1. develope에서 필요한 기능 구현을 위해 branch 생성
    1. git checkout develope
    2. git branch branch 이름
    3. git checkout branch 이름
  2. branch의 이름은 feature/(BE or FE)/구현할 기능
  3. branch에서 작업
    1. git pull 한번 해주기.
    2. git add 파일이름.확장자
    3. git commit -m “커밋메세지”
    4. git push origin featurebranch이름