terminal

· 기타
[GIT] 다른 브랜치 가져오기 1. 원인 처음 GIT에서 클론(clone)할 때, 특정 브랜치만 내려받았거나, GIT에 새로운 브랜치가 추가되었을 경우, 내 로컬에는 추가된 브랜치 또는 다른 브랜치 정보를 (pull)받아올 수 없었다. 2. 해결 먼저 원격 저장소의 내용을 update를 한 후 checkout 으로 원하는 브랜치로 바꿔주면 된다. 브랜치 변경할 때 -t 옵션을 추가해 원격 브랜치를 갖고 올 수 있다. $ git remote update $ git checkout -t '브랜치' [참고]
· 기타
[VSCode] ERROR : Cannot read property 'length' of null 1. 오류 VSCode에서 터미널(Terminal)을 열면 우측 하단에 `Cannot read property 'length' of null`이라는 오류가 발생하면서 terminal이 정상적으로 실행되지 않는다. 2. 해결 vs code의 settings.json 파일에 null로 입력된 값이 없는지 확인한 후 변경 또는 지워주면 된다. terminal.integrated.localEchoStyle에 null이라 되어 있는 부분을 삭제했더니 정상적으로 터미널이 실행되었다. 사람마다 어느 옵션값이 null이라 오류를 발생시키는지는 다른 것 같다. 터미널로 시작하는 옵션(terminal.~)들만 위주로 체크해보..
[MongoDB] 온라인 MongoDB Terminal 간단한 mongodb 쿼리 테스트를 위한 온라인 몽고디비 터미널 https://www.jdoodle.com/online-mongodb-terminal JDoodle - free Online Compiler, Editor for Java, C/C++, etc JDoodle is a free Online Compiler, Editor, IDE for Java, C, C++, PHP, Perl, Python, Ruby and many more. you can run your programs on the fly online and you can save and share them with others. Quick and Easy way to compile ..
· 기타
[VSCode] Python 실행 시 terminal에서 한글 깨짐 발생 > .vscode/tasks.json 수정 - tasks.json 파일 여는 법 : ctrl + shift + p 누른 후 "Tasks: Configure Tasks" 선택 - python3이면 command에 python3로 입력하면 된다. { "version": "0.1.0", "command": "python", "isShellCommand": true, "args": ["${file}"], "showOutput": "always", "options": { "env": { "PYTHONIOENCODING": "UTF-8" } } } + 추가 인코딩을 utf8이 아닌 EUC-KR로 변경하면 된다. 위에는 utf8으로 아래는 eu..
S0PH1A
'terminal' 태그의 글 목록