| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Quartz
- xargs
- VirtualBox
- bash
- vscode
- GIT
- JavaScript
- Eclipse
- port
- Windows 10
- plugin
- Source
- lsof
- find
- 단축키
- profile
- tomcat
- ora2pg
- IntelliJ
- web.xml
- maVen
- import
- Windows
- ssh
- resource
- netsh
- context
- 네트워크
- grep
- Mac
- Today
- Total
목록전체 글 (1838)
develog
.gitattributes 설정 추가 추가 (Git Repository 에 파일 추가)# .gitattributes# 모든 텍스트 파일은 Git에서 LF로 관리* text=auto eol=lf# Windows 전용 스크립트 파일*.bat text eol=crlf*.cmd text eol=crlf*.ps1 text eol=crlf crlf 정규화하기# 파일의 CRLF/LF 줄바꿈을 .gitattributes 정책에 맞게 정규화git add --renormalize mvnw.cmd# 내용 변화가 아니라 줄바꿈만 바뀌었는지 확인git diff --cached --ignore-cr-at-eol --statgit statusgit commit -m 'crlf normalize'git push origin
.gitconfig 설정# Windowscore.autocrlf=true# macOScore.autocrlf=input# Windowsgit config --global core.autocrlf true# macOSgit config --global core.autocrlf input .gitattributes 설정 (Git Repository 에 추가)# .gitattributes (Git Repository 에 추가)* text=auto eol=lf# Windows 전용 파일*.bat text eol=crlf*.cmd text eol=crlf*.ps1 text eol=crlfecho "* text=auto eol=lf" > .gitattributes
# submodule 추가git submodule add https://github.com/myrepos/prv-admin.git packages/admingit submodule add https://github.com/myrepos/prv-front.git packages/front# submodule 목록 확인git submodulegit submodule status# submodule 의 최신 코드 가져오기git submodule update --init --recursive# submodule 의 최신 commit 가져오기git submodule update --remote --recursive
$ sudo vi /etc/sudoers%sudo ALL=(ALL:ALL) NOPASSWD: ALL
# flyway 클린하기./mvnw flyway:clean -pl common -Dflyway.cleanDisabled=false# flyway 마이그레이션./mvnw flyway:migrate -pl common# 특정 폴더만 마이그레이션./mvnw flyway:migrate -pl common -Dflyway.locations=filesystem:src/main/resources/db/migration2 # 단일 프로젝트인 경우./mvnw flyway:migrate \ -Dflyway.url=jdbc:oracle:thin:@127.0.0.1:1521/ORCLPDB1 \ -Dflyway.user=scott \ -Dflyway.password=tiger# 중첩 프로젝트인 경우 (-pl : Proje..
git status 실행시 한글이 깨진다$ git statusUntracked files: (use "git add ..." to include in what will be committed) "123 \355\225\234\352\270\200 \355\214\214\354\235\274\353\252\205.md" git config 설정에서 core.quotepath 를 false 로 설정한다# core.quotepath 를 false 로 설정한다# core.quotepath 설정 확인git config --get core.quotepath# 현재 사용자만 적용git config --global core.quotepath false# 현재 저장소만 적용git config core.quotepath..
