일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- netsh
- bash
- Mac
- 단축키
- xargs
- VirtualBox
- 줄바꿈 문자
- resource
- profile
- GIT
- web.xml
- Windows
- port
- import
- IntelliJ
- Windows 10
- lsof
- Eclipse
- plugin
- ssh
- 네트워크
- find
- maVen
- Quartz
- context
- tomcat
- vscode
- grep
- JavaScript
- Source
- Today
- Total
목록2024/10 (36)
develog
# Mac 검색option + command + Space
# 폰트 위치/usr/share/fonts# 폰트 설치# /usr/share/fonts 하위 아무 곳이나 설치/usr/share/fonts/truetype/nanum-ttf/usr/share/fonts/opentype/nanum-otf/usr/share/fonts/_custom/nanum-ttf/usr/share/fonts/_custom/nanum-otf# 폰트 캐시 갱신sudo fc-cache -fv# 폰트 목록 보기fc-list | grep -i 'nanum'fc-list :lang=ko # 시스템 전체 폰트 설치 경로/usr/share/fonts//usr/local/share/fonts/# 사용자 전용 폰트 설치 경로~/.fonts/~/.local/share/fonts/
vscode 에 eslint 플러그인을 설치한다 eslint 패키지를 설치한다yarn add eslint --dev# yarn add eslint-plugin-node --dev eslint 를 초기화한다$ npx eslint --init✔ How would you like to use ESLint? · problems✔ What type of modules does your project use? · commonjs✔ Which framework does your project use? · none✔ Does your project use TypeScript? · javascript✔ Where does your code run? · nodeThe config that you've selected re..
Extensions (command + shift + X) 를 누르고@enabled 로 검색한다
unrelated histories 오류로 머지가 안되는 경우$ git merge masterfatal: refusing to merge unrelated histories --allow-unrelated-histories 를 사용해서 머지한다$ git merge master --allow-unrelated-historiesAuto-merging aa.txtCONFLICT (add/add): Merge conflict in aa.txtAutomatic merge failed; fix conflicts and then commit the result.