[컴] git flow 자료들

gitflow / git flow 처음 시작 / git clone 후 git flow 적용 /



git flow

Extensions for Visual Studio Code

Git flow cheat sheet

git flow 를 사용하는 git repository 를 사용

1. git clone https://<git-address>

git clone 으로 source 를 가져온다.

2. git flow init

Which branch should be used for bringing forth production releases?
   - develop
   - master
Branch name for production releases: [master]

Which branch should be used for integration of the "next release"?
   - develop
Branch name for "next release" development: [develop]

How to name your supporting branch prefixes?
Feature branches? [feature/]
Bugfix branches? [bugfix/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? []
Hooks and filters directory? [C:/a/prog/mainsource/.git/hooks]

git flow feature 사용

3. git flow feature start

git flow feature start 를 이용해서 feature branch 를 만들 수 있다. 이때 어느  branch 에서 만들어도 develop branch에서 만들어준다.

4. git flow feature rebase

base 를 develop branch 의 최신 상태로 rebase 해준다.(참고)

5. git flow feature finish

현재 feature 를 develop branch 에 merge 를 해주고 --> branch 를 없애고 --> develop branch 로 돌아간다.




댓글 없음:

댓글 쓰기