본문 바로가기

prcExp93

[2022.08.30] How to make gitnore for each project? [2022.08.30] How to make gitnore for each project? 해당 사이트에서 커밋 시 제외하고 올릴 수 있는 .gitnore파일을 만들어 준다. 예시로 web 프로젝트 관련이라고 했을 때, 위와 같이 생성된 모습을 확인할 수 있다. 2022. 8. 30.
[2022.08.30] How to use branch on Sourcetree? [2022.08.30] How to use branch on Sourcetree? branch 란? - '평행세계' 를 뜻함 * 똑같이 가져와서 개발 작업 시 충돌이 발생하지 않음 원본(master)에서 체크아웃 > 브렌치 > 새 브렌치(생성할 브렌치 명) 입력 > 브렌치 생성 feature - 기능 개발 hotfix - 이슈, 대응, 문제 있을 떄 수정 2022. 8. 30.
[2022.08.29] How to use Map(Multi Key,value) on java? 보호되어 있는 글 입니다. 2022. 8. 29.
[2022.08.26] How to use Map(Key,value) on java? 보호되어 있는 글 입니다. 2022. 8. 26.
[2022.08.23] How to install DBeaver on windows ? [2022.08.23] How to install DBeaver on windows ? 1. 디비버 홈페이지 들어가서 다운 https://dbeaver.io/download/ Download | DBeaver Community Download Tested and verified for MS Windows, Linux and Mac OS X. Install: Windows installer – run installer executable. It will automatically upgrade version (if needed). MacOS DMG – just run it and drag-n-drop DBeaver into Applications. Debian package dbeaver.io 2. OS 환.. 2022. 8. 23.
[2022.08.23] How do I get the text value of a selected option Using JS? [2022.08.23] How do I get the text value of a selected option Using JS? 이번 게시글은 select box에서 선택한 text의 값을 가져오는 방법에 대해 알아보도록 하자 . example 사과 바나나 토마토 해결 방법 $( "#fruit option:selected" ).text(); * 여기서 value값을 가져오고 싶으면 $( "#fruit option:selected" ).val(); 2022. 8. 23.