본문 바로가기

검색용 개발 블로그

[git] 소스트리에서 feature 만들다가 생긴 오류

 

아우 증말 

오늘은 소스트리를 다루는데에 시간이 들었다.

 

에러 문구 해결 방법
cannot delete branch master를 클릭한 상태에서 feature를 삭제하면 됨

 

소스트리에서 develop도 삭제하고 feature도 삭제하고

master만 남은 상태에서 feature 생성하려니 오류가 뜬다.

에러 문구 해결 방법 -> 실패 과정
not a gitflow-enabled repo yet. please run 'git flow init' first. 해당 폴더가서 git flow init을 친다.
연달아 뜨는 세팅에서 여러번 시도하니 꼬였다.(문제 심각)

 

극기야 소스트리가 안켜지는 현상이 왔다.

 

에러 문구 해결방법
소스트리가 안 켜짐 "C:\Users\%USERNAME%\AppData\Local\Atlassian\SourceTree\"
위 경로 안 파일들을 삭제

폴더를 찾아서 소스트리 초기화를 시켰다.

그러고 remote로 admin 가져오기...

 

git flow init -d를 치면 아래처럼 나오는데

어떻게 적을지 몰라서 꼬여버렸다. 아래는 sourceTree에서 제대로 했을경우이다.

git flow init -d
Using default branch names.

Which branch should be used for bringing forth production releases?

   - master
Branch name for production releases: [master] 
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:/fsn/source/vegas-admin/.git/hooks] 
성공적으로 완료되었습니다.