상황eslint와 tsconfig를 수정하여 미사용하는 정의된 모든 변수를 에러처리하려고 했으나,어찌된 이유인지 error가 아닌 warning으로 표시되는 현상을 식별함. 프로젝트 기본 세팅(tsconfig.json / eslint.config.js)은 아래와 같다.// tsconfig.json{ "compilerOptions: { ... "noUnusedLocals": true, // 사용되지 않은 로컬이 있을 경우, 오류로 보고 "noUnusedParameters": true, // 사용되지 않은 매개변수가 있을 경우, 오류로 보고 ... }}// eslint.config.jsexport default tseslint.config( ..
문제 상황DB 백업파일을 복원하려는 과정에 있어서 사진과 같은 에러에 봉착함원인Restore Database Options 내에 Take tail-log backup before restore 옵션이 체크되어 있기에,SQL Server는 복원 전에 현재 데이터베이스의 tail-log 백업을 시도하지만,이미 오프라인 상태이거나 존재하지 않는 데이터베이스를 복원하려고 시도하는 경우 오류가 발생함.복원을 위해 만들었던 빈 DB였기에 당연히 없는 로그를 백업하려고 시도하였기에 오류가 발생한 것으로 보임.(Restore Database 창 접근 방법: 복원하려고 만들었던 새로운 DB 우측 클릭 - Tasks - Restore - Database ... 클릭) 해결방안Take tail-log backup be..
문제 상황평소처럼 git으로 commit을 하거나, stash로 임시저장후 branch를 변경하려고 했으나, 다음과 같은 에러가 발생하였다.fatal: cannot lock ref 'HEAD' : Unable to create '프로젝트 경로/,git/HEAD.lock':File exists.Another git process seems to be running in this repository, e.g.an editor opened by 'git commit'. Please make sure all processesare terminated then try again. If it still fails, a git processmay have crashed in this repository earlier..