낙서장

gitignore 기본 세팅

Jaybon 2022. 4. 22. 11:48

 

스프링 부트 (intellij)

HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

 

nextjs (intellij vscode)

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo

# intellij
.idea

### VS Code ###
.vscode/

 

ignore 하기 전에 잘못 올라간 파일들은 아래 링크를 참고하여 삭제할 수 있다.

https://gmlwjd9405.github.io/2018/05/17/git-delete-incorrect-files.html

 

[Git] Github에 잘못 올라간 파일 삭제하기 - Heee's Development Blog

Step by step goes a long way.

gmlwjd9405.github.io