Search result

우분투 리눅스 시스템 업그레이드(LTS)

- Ubuntu Linux 최신 LTS 릴리즈 버전으로 OS 시스템 업그레이드 하는 방법 - 18 -> 20으로 업그레이드 - 버전 확인 lsb_release -a Ubuntu 18.04.3 LTS Linux Kernel : 5.4.0 //----------------------------------...

Code Linux ubuntu 리눅스 우분투

[오라클 클라우드] 컴퓨트 서버 포트 허용 설정 방법

- 오라클 클라우드 서버 compute, Oracle Cloud Infrastructure (OCI) - web server http(80), https(443) port 접속 가능하게 열기 설정 방법 //----------------------------------------------------------------...

Code

[git] HEAD 종류, 주소, 범위 기호 차이 정리

//------------------ * HEAD 종류 HEAD : 현재 위치 commit, checkout 등의 명령에 의해 변경됨 FETCH_HEAD : fetch 명령으로 가져온 내용의 가장 최신 위치 ORIG_HEAD : 이전 HEAD 의 위치 MERGE_HEAD : merge 명...

Code Git

vscode 북마크(alefragnani.bookmarks) 위치 변하는 문제 해결 방법

Visual studio Code (vs code) bookmark extension Bookmarks Alessandro Fragnani | 1,461,081 installs https://marketplace.visualstudio.com/items?itemName=alefragnani.Bookmarks //-------------------------...

Code

git 초기화(히스토리 로그 삭제)

- 이전 모든 커밋 지우기, git 저장소 초기화 //--------------------------------- < 방법 1> - .git 폴더를 삭제 - submodule을 사용하고 있으면 적용 불가한 방법 설정 파일 .git/config 백업 rm -rf .git # .git...

Code Git

[git] 이미 커밋한 메시지 수정 방법

- commit message, title description, 제목, 상세 설명 변경 방법 - 주의!!! 이미 push한 커밋은 수정하려면 --force옵션을 써야 한다 * 바로 전 커밋한 설명 수정 - amend 사용 git commit --amend -m "New messag...

Code Git

GitHub Pull Request 명령어로 실행

GitHub Pull Request command line * GitHub command line 설치 https://cli.github.com/ https://github.com/cli/cli#windows choco install gh * 로그인 설정 gh auth login - Personal access tokens 생성 - 계정...

Code Git github

VS Code 포매터 지정 방법

- 기본 Formatter 지정 방법 * 메뉴로 설정 문서에서 우클릭 -> Format Document With (Ctrl+Alt+F) -> Configure Default Formatter -> 포매터 선택 //--------------- * settings.json 파일 수정으로 설정 // html...

Code

VS Code 포매터 지정 방법

- 기본 Formatter 지정 방법 * 메뉴로 설정 문서에서 우클릭 -> Format Document With (Ctrl+Alt+F) -> Configure Default Formatter -> 포매터 선택 //--------------- * settings.json 파일 수정으로 설정 // html...

Code

VS Code Extension 만들기

VS Code Extension 만들기 - Visual Studio Code 확장 프로그램 제작 방법 * 필요 Node.js : https://nodejs.org/ko/ Git : https://git-scm.com/ Yeoman : https://yeoman.io/learning/index.html VS Code Extensio...

Code