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
- Source
- JavaScript
- maVen
- xargs
- profile
- Windows
- context
- find
- Eclipse
- Mac
- netsh
- vscode
- import
- VirtualBox
- IntelliJ
- 단축키
- bash
- port
- resource
- ssh
- 네트워크
- web.xml
- lsof
- GIT
- grep
- Windows 10
- 줄바꿈 문자
- plugin
- Quartz
- tomcat
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
Git - gitignore Documentation
The optional configuration variable core.excludesFile indicates a path to a file containing patterns of file names to exclude, similar to $GIT_DIR/info/exclude. Patterns in the exclude file are used in addition to those in $GIT_DIR/info/exclude.
git-scm.com
https://www.toptal.com/developers/gitignore
gitignore.io
Create useful .gitignore files for your project
www.toptal.com
'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