Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- JavaScript
- jquery
- IntelliJ
- Security
- oracle
- db
- 시큐리티
- 알고리즘
- Eclipse
- 오라클
- 프로그래머스
- 넥사크로
- 쿼리
- kotlin
- error
- Java
- Vue
- 자바
- GitHub
- 방법
- 에러
- 코틀린
- 생성
- 스프링
- Git
- JPA
- mybatis
- Spring
- aws
- 함수
Archives
- Today
- Total
송민준의 개발노트
gitignore 본문
1. ".gitignore"?
Project에 원하지 않은 파일들을 Git에서 제외시킬수 있는 설정 파일
2. 최상위 Directory에 존재해야 함.
3. 깃헙 접속 -> 로그인
4. 저장소 이동 - > Create new file
5. .gitignore 입력
6. choose .gitignore 버튼에서 Java 선택
# 확장자 html인 파일
*.html
# home.html 파일 제외
!home.html
7. 전부 작성 후 Commit new file 클릭
- 접속후 키워드 입력 후 생성
---------번외
'웹 > 환경설정(setting)' 카테고리의 다른 글
Git 커밋 작성자 수정 (0) | 2021.02.23 |
---|---|
intellij 정적리소스 바로 반영되게 하는 방법(eclipse - without publishing) (0) | 2020.11.28 |
Spring 에러(lambda expressions are not supported in -source 1.6) (0) | 2020.02.04 |
로그 디버깅 기록 라이브러리 (0) | 2019.12.17 |
Mybatis (0) | 2019.12.16 |