Landroid

[Flutter] 플러터 프로젝트에 .gitignore 추가하기 본문

플러터

[Flutter] 플러터 프로젝트에 .gitignore 추가하기

silso 2021. 3. 10. 22:34

 

github에서 .gitignore를 추가하면 template 에는 flutter가 없습니다.

 

하지만 이미 플러터에서 플러터 전용 gitignore가 있습니다.

 

flutter/flutter

Flutter makes it easy and fast to build beautiful apps for mobile and beyond. - flutter/flutter

github.com

 

 

그래서 이걸 이제 어떻게 사용하느냐

우선 프로젝트를 생성할 폴더에서 아무것도 쓰이지 않은 .gitignore를 만듭니다.

1. github에서 .gitignore를 추가한 채 생성, 클론 후 로컬에 저장

2. 프로젝트를 생성할 폴더에서 git init 한 다음, .gitignore 생성

 

 

이제 비어있는 .gitignore를 생성하셨으면 위에 링크를 통해 flutter repository 안에 .gitignore를 복사하시고

로컬에서 .gitignore를 붙여 넣기 하시면 됩니다.

 

참 쉽죠?

 

 

프로젝트 도중에 추가할 경우

우선 위에 방법대로 .gitignore를 생성합니다.

그다음 gitbash에 아래와 같은 명령어를 입력합니다.

$ git rm -r --cached .
$ git add .
$ git commit -m 'remove ignored file'
$ git push {remote} {branch}

'플러터' 카테고리의 다른 글

[Flutter] TDD 사용하기  (0) 2021.05.21
[Flutter] State와 StatefulWidget을 분리한 이유  (3) 2021.04.07
FutureBuilder에서 future 함수 중복 호출 방지  (0) 2021.02.21
[Flutter] Skia가 뭐지?  (0) 2021.01.15
[플러터] 테스트  (0) 2021.01.09
Comments