XCode iOS용 .gitignore 작성 방법
- 모든 작업은 terminal 에서 진행
- git이 설치되어 있음
- .git repository를 프로젝트에 생성해 놓음
1. gitignore 생성관련 git config 환경설정(git 설치 후 최초 1회만 진행)
$ git config --global alias.ignore '!gi() { curl -L -s https://www.gitignore.io/api$@; }; gi'
|
2. gitignore를 추가할 프로젝트 경로로 이동
3. www.gitignore.io 에 등록된 gitignore 생성 (사용할 언어에 대한 ignore 다수 지정 가능 : 빨간색으로 표시)
$ git ignore swift,macos > .gitignore
|
4. 생성한 gitignore 커밋
$ git add .gitignore
$ git commit -m "Add .gitignore file"
|
프로젝트를 열면 아래와 같은 .gitignore가 적용되어 있음.
|
끝.
'iOS' 카테고리의 다른 글
[iOS/Xcode] network traffic details (1) | 2022.04.18 |
---|---|
[XCode/Swift] UITableView dynamic cell height (0) | 2022.02.18 |
[swift3] custom segue transition animation (0) | 2019.02.27 |
[iOS] how to create iOS/swift .gitignore in MacOS terminal(console) (0) | 2019.02.18 |
[swift3] Create Simple Progress Dialog View (ProgressBar, ProgressIndicator, LoadingProgress) (0) | 2017.06.27 |