Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- IntelliJ
- 단축키
- tomcat
- Source
- Quartz
- context
- web.xml
- find
- xargs
- resource
- netsh
- JavaScript
- import
- bash
- 네트워크
- maVen
- vscode
- ssh
- Windows 10
- Eclipse
- VirtualBox
- grep
- lsof
- plugin
- 줄바꿈 문자
- port
- profile
- GIT
- Windows
- Mac
Archives
- Today
- Total
develog
[git] .gitignore 본문
.gitignore
##### macOS
.DS_Store
##### git
.git/
##### gradle
.gradle/
build/
**/.gradle/
**/build/
##### maven
target/
**/target/
##### intellij
.idea/
*.iml
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
##### eclipse
.settings/
.classpath
.project
**/.settings/
**/.classpath
**/.project
##### Node
node_modules/
package-lock.json
yarn.lock
**/node_modules/
**/package-lock.json
**/yarn.lock
##### project
!**/src/main/
!**/src/test/
!**/src/main/**/build/
!**/src/test/**/build/
!**/src/main/**/bin/
!**/src/test/**/bin/
!**/src/main/**/out/
!**/src/test/**/out/
##### etc
out/
_DOC/
test/
META-INF/
log4sql*
https://git-scm.com/docs/gitignore
https://www.toptal.com/developers/gitignore
'Dev > git' 카테고리의 다른 글
[git] merge vs rebase (0) | 2021.03.31 |
---|---|
[git] git branching model (0) | 2021.03.31 |
[git] git status untracked file not showing (0) | 2021.03.17 |
[git] rollback (0) | 2021.03.02 |
[git] config, init (0) | 2020.01.09 |
Comments