Git:DefaultTemplate
프로젝트 최초 작성시 Git Repository에 처음 작성할 코드 목록.
.gitattributes
.gitignore
# GIT IGNORE FILE.
#############
### Linux ###
*~
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*
###########
### OSX ###
.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
###############
### Windows ###
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
.BIN/
# Windows Installer files
*.cab
*.msi
*.msm
*.msp
# Windows shortcuts
*.lnk
###################
### Executables ###
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
#####################
### Project local ###
.gitlab-ci.yml
image: ubuntu:18.04
stages:
- preview
- build
- test
- deploy
- review
default-preview:
stage: preview
script:
- "echo Current directory: $PWD"
- "echo Directory listing:"
- "ls -la"
default-build:
stage: build
script:
- "echo Empty build stage"
default-test:
stage: test
script:
- "echo Empty test stage"
default-deploy:
stage: deploy
script:
- "echo Empty deploy stage"
default-review:
stage: review
script:
- "echo Empty review stage"